enableDebug static method

Future enableDebug({
  1. bool enable = false,
})

Implementation

static Future<dynamic> enableDebug({bool enable = false}) {
  final Map args = {'enable': enable};
  return _channel.invokeMethod(FlyVerifySDKMethods.enableDebug.name, args);
}