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