toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final computeType = this.computeType;
  final volumeSizeInGB = this.volumeSizeInGB;
  return {
    'computeType': computeType.toValue(),
    'volumeSizeInGB': volumeSizeInGB,
  };
}