enableIOSPIP method

Future<void> enableIOSPIP(
  1. String streamID, {
  2. int aspectWidth = 9,
  3. int aspectHeight = 16,
})

Implementation

Future<void> enableIOSPIP(
  String streamID, {
  int aspectWidth = 9,
  int aspectHeight = 16,
}) async {
  return await ZegoUIKitPluginPlatform.instance.enableIOSPIP(
    streamID,
    aspectWidth: aspectWidth,
    aspectHeight: aspectHeight,
  );
}