toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final multiplexId = this.multiplexId;
  final programName = this.programName;
  return {
    if (multiplexId != null) 'multiplexId': multiplexId,
    if (programName != null) 'programName': programName,
  };
}