toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final callStartDateTime = this.callStartDateTime;
  final callerId = this.callerId;
  final consent = this.consent;
  final conversionAction = this.conversionAction;
  final conversionDateTime = this.conversionDateTime;
  final conversionValue = this.conversionValue;
  final currencyCode = this.currencyCode;
  final customVariables = this.customVariables;
  return {
    'callStartDateTime': ?callStartDateTime,
    'callerId': ?callerId,
    'consent': ?consent,
    'conversionAction': ?conversionAction,
    'conversionDateTime': ?conversionDateTime,
    'conversionValue': ?conversionValue,
    'currencyCode': ?currencyCode,
    'customVariables': ?customVariables,
  };
}