config method

  1. @override
Future<bool> config(
  1. String key,
  2. String password,
  3. bool enableDebug
)
override

Implementation

@override
Future<bool> config(String key,String password, bool enableDebug) async {
  final result = await methodChannel.invokeMethod<bool>(methodConfig,[key, password, enableDebug]);
  return result ?? false;
}