IngestionInfo.fromJson constructor

IngestionInfo.fromJson(
  1. Map json_
)

Implementation

IngestionInfo.fromJson(core.Map json_)
    : this(
        backupIngestionAddress:
            json_['backupIngestionAddress'] as core.String?,
        ingestionAddress: json_['ingestionAddress'] as core.String?,
        rtmpsBackupIngestionAddress:
            json_['rtmpsBackupIngestionAddress'] as core.String?,
        rtmpsIngestionAddress: json_['rtmpsIngestionAddress'] as core.String?,
        streamName: json_['streamName'] as core.String?,
      );