Returns a unique ID for new notifications

Property definitions

android :: notification $ Sys :: next_notification_id
	# Returns a unique ID for new notifications
	private fun next_notification_id: Int
	do
		var id = next_notification_id_cache
		next_notification_id_cache = id + 1
		return id
	end
lib/android/notification/notification.nit:125,2--131,4