Returns the set MIME and null if none

Property definitions

android $ Intent :: type_name
	# Returns the set MIME and `null` if none
	fun type_name: nullable String do
		var result = intent.get_type.to_s
		if result == "" then return null
		return result
	end
lib/android/intent/intent_api10.nit:732,2--737,4