toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (account != null) 'account': account!,
  if (name != null) 'name': name!,
  if (region != null) 'region': region!,
  if (regionalInventoryAttributes != null)
    'regionalInventoryAttributes': regionalInventoryAttributes!,
};