Retrieves the String extra stored as Java String with the corresponding

name

Property definitions

android $ Intent :: extra_string
	# Retrieves the `String` extra stored as Java `String` with the corresponding
	# name
	fun extra_string(name: String): String
	do
		sys.jni_env.push_local_frame(1)
		var nit_java_string = intent.string_extra(name.to_java_string).to_s
		sys.jni_env.pop_local_frame
		return nit_java_string
	end
lib/android/intent/intent_api10.nit:988,2--996,4