Wiredash constructor

const Wiredash({
  1. Key? key,
  2. required String projectId,
  3. required String secret,
  4. WiredashOptionsData? options,
  5. WiredashThemeData? theme,
  6. WiredashFeedbackOptions? feedbackOptions,
  7. PsOptions? psOptions,
  8. EdgeInsets? padding,
  9. FutureOr<CustomizableWiredashMetaData> collectMetaData(
    1. CustomizableWiredashMetaData metaData
    )?,
  10. required Widget child,
})

Creates a new Wiredash Widget which allows users to send feedback, wishes, ratings and much more

Implementation

const Wiredash({
  super.key,
  required this.projectId,
  required this.secret,
  this.options,
  this.theme,
  this.feedbackOptions,
  this.psOptions,
  this.padding,
  this.collectMetaData,
  required this.child,
});