convertHeicToJpeg method
Implementation
@override
Future<File> convertHeicToJpeg(File file) async {
final String? convertedPath = await methodChannel.invokeMethod(
'convertHeicToJpeg',
{'path': file.path},
);
return convertedPath != null ? File(convertedPath) : file;
}