toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final gcidCategory = this.gcidCategory;
  final kind = this.kind;
  final matchingStatus = this.matchingStatus;
  final matchingStatusHint = this.matchingStatusHint;
  final phoneNumber = this.phoneNumber;
  final placeId = this.placeId;
  final storeAddress = this.storeAddress;
  final storeCode = this.storeCode;
  final storeName = this.storeName;
  final websiteUrl = this.websiteUrl;
  return {
    'gcidCategory': ?gcidCategory,
    'kind': ?kind,
    'matchingStatus': ?matchingStatus,
    'matchingStatusHint': ?matchingStatusHint,
    'phoneNumber': ?phoneNumber,
    'placeId': ?placeId,
    'storeAddress': ?storeAddress,
    'storeCode': ?storeCode,
    'storeName': ?storeName,
    'websiteUrl': ?websiteUrl,
  };
}