convert method

Future<bool> convert(
  1. String inputPath,
  2. String outputPath, {
  3. int compressionLevel = 6,
  4. bool preserveMetadata = true,
})

Converts a HEIC/HEIF file at inputPath to PNG at outputPath.

Implementation

Future<bool> convert(
  String inputPath,
  String outputPath, {
  int compressionLevel = 6,
  bool preserveMetadata = true,
}) {
  throw UnimplementedError('convert() has not been implemented.');
}