setDebugLog method

Future<void> setDebugLog({
  1. required bool isDebug,
})

Implementation

Future<void> setDebugLog({required bool isDebug}) async {
  return _channel.invokeMethod("setDebugLog", <String, dynamic>{
    'isDebug': isDebug,
  });
}