isEmptyMap function

bool isEmptyMap(
  1. Map? map
)

Implementation

bool isEmptyMap(Map? map) {
  return map == null || map.isEmpty;
}