toMap method

Map<String, String> toMap()

Implementation

Map<String, String> toMap() => Map.fromEntries(toIterable().map(
      (a) => MapEntry(
        a.name.toDartFix,
        a.value.toDartFix,
      ),
    ));