Returns the action to be performed or null if none

Property definitions

android $ Intent :: action
	# Returns the action to be performed or `null` if none
	fun action: nullable String do
		var result = intent.action.to_s
		if result == "" then return null
		return result
	end
lib/android/intent/intent_api10.nit:647,2--652,4