final result = await _channel.invokeMethod<Uint8List>('compressWithList', {
'list': image,
'minWidth': minWidth,
'minHeight': minHeight,
'inSampleSize': inSampleSize,
'quality': quality,
'rotate': rotate,
'autoCorrectionAngle': autoCorrectionAngle,
'format': format.index,
'keepExif': keepExif,
'numberOfRetries': numberOfRetries,
});
Content
鸿蒙的compressWithList方法有参数numberOfRetries,但Android和iOS的compressWithList方法却没有
为什么区别处理呢?