decodePvrFile function

Future<Image?> decodePvrFile(
  1. String path, {
  2. int? frame,
})

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

Implementation

Future<Image?> decodePvrFile(String path, {int? frame}) async {
  final bytes = await readFile(path);
  if (bytes == null) {
    return null;
  }
  return PvrDecoder().decode(bytes, frame: frame);
}