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