MssManifest.fromJson constructor

MssManifest.fromJson(
  1. Map<String, dynamic> json
)

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