getStringProperty method

StringPropertyStream getStringProperty(
  1. String key
)

Implementation

StringPropertyStream getStringProperty(String key) {
  final fullPath = _propertyPath.isEmpty ? key : '$_propertyPath.$key';
  return _parserController.getPropertyStream(fullPath, String)
      as StringPropertyStream;
}