setMapDefault static method

bool setMapDefault(
  1. Map? map,
  2. String key,
  3. bool defaultValue
)

Implementation

static bool setMapDefault(Map? map, String key, bool defaultValue) =>
    map != null ? map[key] == 1 : defaultValue;