FeedbackInfo constructor

FeedbackInfo(
  1. FeedbackType type,
  2. String productName,
  3. String detailDescription, {
  4. String? contact,
  5. String? extraInfo,
  6. bool? uploadLogs = false,
})

Constructs a FeedbackInfo

Implementation

FeedbackInfo(this.type, this.productName, this.detailDescription,
    {this.contact, this.extraInfo, this.uploadLogs = false});