processVideo method

  1. @override
Future<String?> processVideo({
  1. required String id,
})
override

Implementation

@override
Future<String?> processVideo({required String id}) async {
  try {
    final result = await methodChannel.invokeMethod('processVideo', {
      'id': id,
    });
    return result;
  } on PlatformException {
    rethrow;
  }
}