stopConfigPw static method

Future<bool> stopConfigPw({
  1. required String mode,
})

停止配网

Implementation

static Future<bool> stopConfigPw({required String mode}) async {
  bool result = await _channel.invokeMethod('stop_config', {'mode': mode});
  return result;
}