toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final cpu = this.cpu;
  final diskGb = this.diskGb;
  final kmsKeyReference = this.kmsKeyReference;
  final memoryGb = this.memoryGb;
  final volumes = this.volumes;
  return {
    'cpu': ?cpu,
    'diskGb': ?diskGb,
    'kmsKeyReference': ?kmsKeyReference,
    'memoryGb': ?memoryGb,
    'volumes': ?volumes,
  };
}