decode static method
Implementation
static Future<ui.Image> decode(
String blurhash, {
int width = 32,
int height = 32,
int punch = 1,
}) async {
try {
return _instance._blurHashDecodeImage(blurhash, width, height, punch);
} catch (e) {
throw BlurhashFFIException(
'Could not decode Image', StackTrace.current, e);
}
}