toJson method

Map<String, dynamic> toJson()

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,
  };
}