getBool static method

bool getBool(
  1. Map? data,
  2. String key, {
  3. bool defaultValue = false,
})

Implementation

static bool getBool(Map? data, String key, {bool defaultValue = false}) {
  return toBool(getDataHashMap(data, key).toString(),
      defaultValue: defaultValue);
}