decode static method

Future<Uint8List?> decode(
  1. String blurHash,
  2. int width,
  3. int height, {
  4. double punch = 1.0,
  5. bool useCache = true,
})

Implementation

static Future<Uint8List?> decode(String blurHash, int width, int height,
    {double punch = 1.0, bool useCache = true}) {
  return BlurHashPlatform.instance
      .decode(blurHash, width, height, punch: punch, useCache: useCache);
}