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