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