onVideoSizeUpdate method
Only used for AndroidViewMode.texture
Implementation
@override
void onVideoSizeUpdate(int width, int height) {
if (_controller.androidViewMode != AndroidViewMode.texture) return;
_controller.textureParams.value = _controller.textureParams.value.copyWith(
size: Size(width.toDouble(), height.toDouble()),
);
}