StreamingSideInputLocation.fromJson constructor
StreamingSideInputLocation.fromJson(
- Map _json
Implementation
StreamingSideInputLocation.fromJson(core.Map _json)
: this(
stateFamily: _json.containsKey('stateFamily')
? _json['stateFamily'] as core.String
: null,
tag: _json.containsKey('tag') ? _json['tag'] as core.String : null,
);