StreamingStageLocation.fromJson constructor

StreamingStageLocation.fromJson(
  1. Map json_
)

Implementation

StreamingStageLocation.fromJson(core.Map json_)
    : this(
        streamId: json_.containsKey('streamId')
            ? json_['streamId'] as core.String
            : null,
      );