enterPipMode method

Future<bool> enterPipMode({
  1. int? width,
  2. int? height,
})

Enters PiP mode for the specified player ID.

Implementation

Future<bool> enterPipMode({int? width, int? height}) {
  return VideoPlayerPip.enterPipMode(this, width: width, height: height);
}