getBoolValue method

bool getBoolValue(
  1. String fieldNameOrPath, [
  2. bool? defaultValue
])

An alias for getDataValue<bool>().

Implementation

bool getBoolValue(String fieldNameOrPath, [bool? defaultValue]) {
  return getDataValue<bool>(fieldNameOrPath, defaultValue);
}