processVideo method
Implementation
@override
Future<String?> processVideo({
required String id,
void Function(double process)? onProgress,
}) async {
try {
final result = await methodChannel.invokeMethod('processVideo', {
'id': id,
});
return result.toString();
} on PlatformException {
rethrow;
}
}