CmafAdditionalManifest.fromJson constructor
Implementation
factory CmafAdditionalManifest.fromJson(Map<String, dynamic> json) {
return CmafAdditionalManifest(
manifestNameModifier: json['manifestNameModifier'] as String?,
selectedOutputs: (json['selectedOutputs'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
);
}