toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final account = this.account;
  final name = this.name;
  final region = this.region;
  final regionalInventoryAttributes = this.regionalInventoryAttributes;
  return {
    'account': ?account,
    'name': ?name,
    'region': ?region,
    'regionalInventoryAttributes': ?regionalInventoryAttributes,
  };
}