toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final gcidCategory = this.gcidCategory;
final matchingState = this.matchingState;
final matchingStateHint = this.matchingStateHint;
final name = this.name;
final phoneNumber = this.phoneNumber;
final placeId = this.placeId;
final storeAddress = this.storeAddress;
final storeCode = this.storeCode;
final storeName = this.storeName;
final targetAccount = this.targetAccount;
final websiteUri = this.websiteUri;
return {
'gcidCategory': ?gcidCategory,
'matchingState': ?matchingState,
'matchingStateHint': ?matchingStateHint,
'name': ?name,
'phoneNumber': ?phoneNumber,
'placeId': ?placeId,
'storeAddress': ?storeAddress,
'storeCode': ?storeCode,
'storeName': ?storeName,
'targetAccount': ?targetAccount,
'websiteUri': ?websiteUri,
};
}