toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final currencyCode = this.currencyCode;
  final eventCounter = this.eventCounter;
  final eventOccurrenceRange = this.eventOccurrenceRange;
  final eventRevenueRange = this.eventRevenueRange;
  final eventRevenueValue = this.eventRevenueValue;
  final mappedEventName = this.mappedEventName;
  return {
    'currencyCode': ?currencyCode,
    'eventCounter': ?eventCounter,
    'eventOccurrenceRange': ?eventOccurrenceRange,
    'eventRevenueRange': ?eventRevenueRange,
    'eventRevenueValue': ?eventRevenueValue,
    'mappedEventName': ?mappedEventName,
  };
}