toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (compressedSizeBytes != null)
    'compressedSizeBytes': compressedSizeBytes!,
  if (id != null) 'id': id!,
  if (type != null) 'type': type!,
  if (uncompressedSizeBytes != null)
    'uncompressedSizeBytes': uncompressedSizeBytes!,
};