setDebug static method

Future<void> setDebug({
  1. bool isDebug = true,
})

Launching the debug mode of native SDK

Implementation

static Future<void> setDebug({bool isDebug = true}) async {
  if (kIsWeb || !Platform.isAndroid) throw Exception('Only for Android');
  return _channel.invokeMethod<void>('set_debug', {'is_debug': isDebug});
}