toSafe method

Map<String, E> toSafe()

Implementation

Map<String, E> toSafe() {
  removeWhere((key, value) => value == null || value.toString().isEmpty);
  return this;
}