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