setVideoSurfaceSize method

void setVideoSurfaceSize(
  1. int width,
  2. int height, {
  3. Object? vid,
})

Implementation

void setVideoSurfaceSize(int width, int height, {Object? vid}) =>
    _player.ref.setVideoSurfaceSize.asFunction<
            void Function(Pointer<mdkPlayer>, int, int, Pointer<Void>)>()(
        _player.ref.object, width, height, Pointer.fromAddress(vid.hashCode));