getPropertyAsStringMap method

Map<String, String>? getPropertyAsStringMap(
  1. String key, [
  2. Map<String, String>? def
])

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);