toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (diskType != null) 'diskType': diskType!,
  if (fsType != null) 'fsType': fsType!,
  if (reclaimPolicy != null) 'reclaimPolicy': reclaimPolicy!,
  if (sizeGb != null) 'sizeGb': sizeGb!,
  if (sourceSnapshot != null) 'sourceSnapshot': sourceSnapshot!,
};