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,
);