StreamingSideInputLocation.fromJson constructor

StreamingSideInputLocation.fromJson(
  1. 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,
      );