getPropertyAsStringMap method
Gets a property with key
as List<Map>.
def
The default value if key
not found.
Implementation
Map<String, String>? getPropertyAsStringMap(String key,
[Map<String, String>? def]) =>
getPropertyAs(
key, (v) => parseStringFromInlineMap(v, ';', ':', def), def);