isValidMap static method

bool isValidMap(
  1. Map? map
)

Implementation

static bool isValidMap(Map? map) {
  if (map == null || map.isEmpty) return false;
  return true;
}