toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final advertiserId = this.advertiserId;
  final displayName = this.displayName;
  final locationListId = this.locationListId;
  final locationType = this.locationType;
  final name = this.name;
  return {
    'advertiserId': ?advertiserId,
    'displayName': ?displayName,
    'locationListId': ?locationListId,
    'locationType': ?locationType,
    'name': ?name,
  };
}