Returns the data Uri the data is operating on or null if none

Property definitions

android $ Intent :: data
	# Returns the data Uri the data is operating on or `null` if none
	fun data: nullable String
	do
		var result = intent.data.to_s
		if result == "" then return null
		return result
	end
lib/android/intent/intent_api10.nit:690,2--696,4