setOutputSize method
Implementation
Future<void> setOutputSize({int? width, int? height}) async {
if (!_videoOutput) return;
final textureId = await _channel.invokeMethod(
'VOSetSize',
{
'handle': handle,
'width': (width ?? videoParams.value.dw),
'height': (height ?? videoParams.value.dh),
},
);
id.value = textureId;
}