getBoolValue static method

bool getBoolValue(
  1. String key, {
  2. bool defaultValue = false,
})

Implementation

static bool getBoolValue(String key, {bool defaultValue = false}) {
  return Field.getBool(_data[key], defaultValue);
}