BetterFeedback constructor

const BetterFeedback({
  1. Key? key,
  2. required Widget child,
  3. FeedbackThemeData? theme,
  4. List<LocalizationsDelegate>? localizationsDelegates,
  5. Locale? localeOverride,
  6. FeedbackMode mode = FeedbackMode.navigate,
  7. double pixelRatio = 3.0,
})

Implementation

const BetterFeedback({
  Key? key,
  required this.child,
  this.theme,
  this.localizationsDelegates,
  this.localeOverride,
  this.mode = FeedbackMode.navigate,
  this.pixelRatio = 3.0,
})  : assert(
        pixelRatio > 0,
        'pixelRatio needs to be larger than 0',
      ),
      super(key: key);