resetEngine static method

Future<void> resetEngine()

Resets the engine state, and then initializes the engine

重置引擎状态,然后初始化引擎

Implementation

static Future<void> resetEngine() async {
  if (!Platform.isAndroid) return;
  await _channel.invokeMethod<bool?>('resetEngine');
}