decodePngFile function

Future<Image?> decodePngFile(
  1. String path
)

Decode a PNG formatted image from a file. If the platform does not support dart:io, null will be returned.

Implementation

Future<Image?> decodePngFile(String path) async {
  final bytes = await readFile(path);
  if (bytes == null) {
    return null;
  }
  return PngDecoder().decode(bytes);
}