MatrixImageFileResizedResponse constructor

const MatrixImageFileResizedResponse({
  1. required Uint8List bytes,
  2. required int width,
  3. required int height,
  4. int? originalHeight,
  5. int? originalWidth,
  6. String? blurhash,
})

Implementation

const MatrixImageFileResizedResponse({
  required this.bytes,
  required this.width,
  required this.height,
  this.originalHeight,
  this.originalWidth,
  this.blurhash,
});