toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final displayName = this.displayName;
  final latitude = this.latitude;
  final longitude = this.longitude;
  final proximityRadiusAmount = this.proximityRadiusAmount;
  final proximityRadiusUnit = this.proximityRadiusUnit;
  final targetingOptionId = this.targetingOptionId;
  return {
    'displayName': ?displayName,
    'latitude': ?latitude,
    'longitude': ?longitude,
    'proximityRadiusAmount': ?proximityRadiusAmount,
    'proximityRadiusUnit': ?proximityRadiusUnit,
    'targetingOptionId': ?targetingOptionId,
  };
}