toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (cpu != null) 'cpu': cpu!,
  if (diskGb != null) 'diskGb': diskGb!,
  if (kmsKeyReference != null) 'kmsKeyReference': kmsKeyReference!,
  if (memoryGb != null) 'memoryGb': memoryGb!,
  if (volumes != null) 'volumes': volumes!,
};