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 3b0c045 commit 8da3cf0Copy full SHA for 8da3cf0
lib/src/modules/instabug.dart
@@ -399,10 +399,18 @@ class Instabug {
399
}
400
401
/// Sets the repro steps mode for bugs and crashes.
402
+ ///
403
/// [bug] repro steps mode for bug reports.
404
/// [crash] repro steps mode for crash reports.
405
/// [all] repro steps mode for both bug and crash reports, when present it
406
/// overrides [bug] and [crash].
407
408
+ /// Example:
409
+ /// ```dart
410
+ /// Instabug.setReproStepsConfig(
411
+ /// bug: ReproStepsMode.enabledWithNoScreenshots,
412
+ /// crash: ReproStepsMode.disabled,
413
+ /// );
414
static Future<void> setReproStepsConfig({
415
ReproStepsMode? bug,
416
ReproStepsMode? crash,
0 commit comments