toJson method

Map<String, dynamic> toJson()

Implementation

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