Returns true if the Bundle contains this key

Property definitions

android $ Bundle :: has
	# Returns `true` if the Bundle contains this key
	fun has(key: String): Bool
	do
		sys.jni_env.push_local_frame(1)
		var return_value = native_bundle.contains_key(key.to_java_string)
		sys.jni_env.pop_local_frame
		return return_value
	end
lib/android/bundle/bundle.nit:434,2--441,4