getBoolValue method

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

Implementation

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