setVideoSurfaceSize method
Set video renderer size or destroy renderer. Usually NOT used in dart. https://github.com/wang-bin/mdk-sdk/wiki/Player-APIs#void-setvideosurfacesizeint-width-int-height-void-vo_opaque--nullptr
Implementation
void setVideoSurfaceSize(int width, int height) =>
_player.ref.setVideoSurfaceSize.asFunction<
void Function(Pointer<mdkPlayer>, int, int, Pointer<Void>)>()(
_player.ref.object, width, height, Pointer.fromAddress(0));