SDNImageFile constructor

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

Implementation

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