withoutNulls property

Map<String, String> withoutNulls

Implementation

Map<String, String> get withoutNulls => Map.fromEntries(
      entries
          .where((e) => e.value != null)
          .map((e) => MapEntry(e.key, e.value!)),
    );