setSimulatorEnable method

Future<void> setSimulatorEnable(
  1. bool simulatorEnable
)

support arm64 iOS simulator, the default value is false, it needs to be set before calling play().

Implementation

Future<void> setSimulatorEnable(bool simulatorEnable) async {
  await engineInstanceMethodChannel.invokeMethod(
      'setSimulatorEnable', simulatorEnable);
}