MatrixImageFile constructor

MatrixImageFile({
  1. required Uint8List bytes,
  2. required String name,
  3. String? mimeType,
  4. int? width,
  5. int? height,
  6. String? blurhash,
})

Implementation

MatrixImageFile({
  required super.bytes,
  required super.name,
  super.mimeType,
  int? width,
  int? height,
  this.blurhash,
})  : _width = width,
      _height = height;