toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final accountId = this.accountId;
  final advertiserId = this.advertiserId;
  final advertiserIdDimensionValue = this.advertiserIdDimensionValue;
  final floodlightConfigurationId = this.floodlightConfigurationId;
  final floodlightConfigurationIdDimensionValue =
      this.floodlightConfigurationIdDimensionValue;
  final id = this.id;
  final idDimensionValue = this.idDimensionValue;
  final kind = this.kind;
  final name = this.name;
  final subaccountId = this.subaccountId;
  final tagString = this.tagString;
  final type = this.type;
  return {
    'accountId': ?accountId,
    'advertiserId': ?advertiserId,
    'advertiserIdDimensionValue': ?advertiserIdDimensionValue,
    'floodlightConfigurationId': ?floodlightConfigurationId,
    'floodlightConfigurationIdDimensionValue':
        ?floodlightConfigurationIdDimensionValue,
    'id': ?id,
    'idDimensionValue': ?idDimensionValue,
    'kind': ?kind,
    'name': ?name,
    'subaccountId': ?subaccountId,
    'tagString': ?tagString,
    'type': ?type,
  };
}