enableFloatWindowOutOfApp method

Future<void> enableFloatWindowOutOfApp(
  1. bool enable
)

启用/禁用应用外悬浮窗(画中画) 前提:需要先调用 enableFloatWindow(true)

Implementation

Future<void> enableFloatWindowOutOfApp(bool enable) async {
  return await CallManager.instance.enableFloatWindowOutOfApp(enable);
}