getBooleanProperty method

BooleanPropertyStream getBooleanProperty(
  1. String key
)

Implementation

BooleanPropertyStream getBooleanProperty(String key) {
  final fullPath = _propertyPath.isEmpty
      ? key
      : (key.startsWith('[') ? '$_propertyPath$key' : '$_propertyPath.$key');
  return _parserController.getPropertyStream(fullPath, bool)
      as BooleanPropertyStream;
}