toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final compressedSizeBytes = this.compressedSizeBytes;
  final id = this.id;
  final type = this.type;
  final uncompressedSizeBytes = this.uncompressedSizeBytes;
  return {
    'compressedSizeBytes': ?compressedSizeBytes,
    'id': ?id,
    'type': ?type,
    'uncompressedSizeBytes': ?uncompressedSizeBytes,
  };
}