We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fcad06 commit 612efb6Copy full SHA for 612efb6
lib/src/modules/crash_reporting.dart
@@ -122,9 +122,9 @@ class CrashReporting {
122
/// [boolean] isEnabled
123
///
124
/// Requires the [Instabug NDK package](https://pub.dev/packages/instabug_flutter_ndk) to be added to the project for this to work.
125
+ ///
126
+ /// This method is Android-only and has no effect on iOS.
127
static Future<void> setNDKEnabled(bool isEnabled) async {
- if (Platform.isAndroid) {
- return _host.setNDKEnabled(isEnabled);
128
- }
+ return _host.setNDKEnabled(isEnabled);
129
}
130
0 commit comments