getNullProperty method

NullPropertyStream getNullProperty(
  1. String key
)

Implementation

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