SDNImageFile constructor
SDNImageFile({})
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);