Retrieves the String extra stored as Java CharSequence with the

corresponding name

Property definitions

android $ Intent :: extra_char_sequence
	# Retrieves the `String` extra stored as Java `CharSequence` with the
	# corresponding name
	fun extra_char_sequence(name: String, def_value: String ): String
	do
		sys.jni_env.push_local_frame(1)
		var nit_charseq =
			intent.char_sequence_extra(name.to_java_string).to_s
		sys.jni_env.pop_local_frame
		return nit_charseq
	end
lib/android/intent/intent_api10.nit:837,2--846,4