isAppDebuggable method

  1. @override
Future<bool> isAppDebuggable()
override

Implementation

@override
Future<bool> isAppDebuggable() async {
  try {
    final result = await _channel.invokeMethod('isAppDebuggable');
    return result;
  } on PlatformException catch (_) {
    throw UnimplementedError();
  } catch (e) {
    return false;
  }
}