unbindVideoView static method

Future<String?> unbindVideoView(
  1. int tileId
)

Unbinds a video tile.

Implementation

static Future<String?> unbindVideoView(int tileId)
async
{
    var params = {"TileId": tileId};
    return _methodChannel.invokeMethod('UnbindVideoView', params);
}