LiveStreamContentDetails.fromJson constructor

LiveStreamContentDetails.fromJson(
  1. Map json_
)

Implementation

LiveStreamContentDetails.fromJson(core.Map json_)
    : this(
        closedCaptionsIngestionUrl:
            json_.containsKey('closedCaptionsIngestionUrl')
                ? json_['closedCaptionsIngestionUrl'] as core.String
                : null,
        isReusable: json_.containsKey('isReusable')
            ? json_['isReusable'] as core.bool
            : null,
      );