replaceNullWithEmpty property

Map<K, dynamic> replaceNullWithEmpty

Implementation

Map<K, dynamic> get replaceNullWithEmpty => isEmpty
    ? this
    : entries.map((e) => MapEntry(e.key, e.value ?? "")).toMap();