toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final creationTimestamp = this.creationTimestamp;
  final deprecated = this.deprecated;
  final description = this.description;
  final id = this.id;
  final kind = this.kind;
  final maxPoolProvisionedCapacityGb = this.maxPoolProvisionedCapacityGb;
  final maxPoolProvisionedIops = this.maxPoolProvisionedIops;
  final maxPoolProvisionedThroughput = this.maxPoolProvisionedThroughput;
  final minPoolProvisionedCapacityGb = this.minPoolProvisionedCapacityGb;
  final minPoolProvisionedIops = this.minPoolProvisionedIops;
  final minPoolProvisionedThroughput = this.minPoolProvisionedThroughput;
  final minSizeGb = this.minSizeGb;
  final name = this.name;
  final selfLink = this.selfLink;
  final selfLinkWithId = this.selfLinkWithId;
  final supportedDiskTypes = this.supportedDiskTypes;
  final zone = this.zone;
  return {
    'creationTimestamp': ?creationTimestamp,
    'deprecated': ?deprecated,
    'description': ?description,
    'id': ?id,
    'kind': ?kind,
    'maxPoolProvisionedCapacityGb': ?maxPoolProvisionedCapacityGb,
    'maxPoolProvisionedIops': ?maxPoolProvisionedIops,
    'maxPoolProvisionedThroughput': ?maxPoolProvisionedThroughput,
    'minPoolProvisionedCapacityGb': ?minPoolProvisionedCapacityGb,
    'minPoolProvisionedIops': ?minPoolProvisionedIops,
    'minPoolProvisionedThroughput': ?minPoolProvisionedThroughput,
    'minSizeGb': ?minSizeGb,
    'name': ?name,
    'selfLink': ?selfLink,
    'selfLinkWithId': ?selfLinkWithId,
    'supportedDiskTypes': ?supportedDiskTypes,
    'zone': ?zone,
  };
}