toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final mpdLocation = this.mpdLocation;
  final originManifestType = this.originManifestType;
  return {
    if (mpdLocation != null) 'MpdLocation': mpdLocation,
    if (originManifestType != null)
      'OriginManifestType': originManifestType.toValue(),
  };
}