MssManifest.fromJson constructor
Implementation
factory MssManifest.fromJson(Map<String, dynamic> json) {
return MssManifest(
manifestName: json['manifestName'] as String?,
streamSelection: json['streamSelection'] != null
? StreamSelection.fromJson(
json['streamSelection'] as Map<String, dynamic>)
: null,
);
}