convertHeicToJpegBytes method
Implementation
@override
Future<Uint8List> convertHeicToJpegBytes(Uint8List bytes) async {
final Uint8List? convertedBytes = await methodChannel.invokeMethod(
'convertHeicToJpegBytes',
{'bytes': bytes},
);
return convertedBytes ?? bytes;
}