enableIOSPIPAuto method

Future<void> enableIOSPIPAuto(
  1. bool isEnabled, {
  2. int aspectWidth = 9,
  3. int aspectHeight = 16,
})

Implementation

Future<void> enableIOSPIPAuto(
  bool isEnabled, {
  int aspectWidth = 9,
  int aspectHeight = 16,
}) async {
  return await ZegoUIKitPluginPlatform.instance.enableIOSPIPAuto(
    isEnabled,
    aspectWidth: aspectWidth,
    aspectHeight: aspectHeight,
  );
}