toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final deal = this.deal;
  final dealPausingInfo = this.dealPausingInfo;
  final dealServingStatus = this.dealServingStatus;
  final name = this.name;
  final readyToServe = this.readyToServe;
  final rtbMetrics = this.rtbMetrics;
  return {
    'deal': ?deal,
    'dealPausingInfo': ?dealPausingInfo,
    'dealServingStatus': ?dealServingStatus,
    'name': ?name,
    'readyToServe': ?readyToServe,
    'rtbMetrics': ?rtbMetrics,
  };
}