toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final account = this.account;
final base64EncodedName = this.base64EncodedName;
final localInventoryAttributes = this.localInventoryAttributes;
final name = this.name;
final storeCode = this.storeCode;
return {
'account': ?account,
'base64EncodedName': ?base64EncodedName,
'localInventoryAttributes': ?localInventoryAttributes,
'name': ?name,
'storeCode': ?storeCode,
};
}