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