in Sources/Bridget/native.swift [984:1000]
func sendVideoEvent(videoEvent: VideoEvent, completion: @escaping (Result<Void, Error>) -> Void)
/// This method is used by the web layer to instruct the native layer to activate or deactivate fullscreen mode
/// This is currently only required for Android as the fullscreen control on the YouTube player in Android webviews is a no-op
/// @param isFullscreen true if the web layer is fullscreen, false otherwise
/// @returns true if the native operation was successful, false otherwise
/// On Android, this method will return true if the operation was successful, false otherwise
/// On iOS, this method will always return false
///
/// - Parameters:
/// - isFullscreen:
/// - completion: Result<Bool, Error> wrapping return and following Exceptions:
func setFullscreen(isFullscreen: Bool, completion: @escaping (Result<Bool, Error>) -> Void)
}
open class VideosProcessor /* Videos */ {