Return the associated metadata from the ini, if any

Property definitions

nitc $ MPackageMetadata :: metadata
	# Return the associated metadata from the `ini`, if any
	fun metadata(key: String): nullable String do
		var ini = mpackage.ini
		if ini == null then return null
		return ini[key]
	end
src/catalog/catalog.nit:67,2--72,4