getMapProperty method

MapPropertyStream getMapProperty(
  1. String key
)

Implementation

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