getUserFeedback static method

Future<Uri?> getUserFeedback({
  1. String title = "Feedback",
  2. String hint = "Please insert your feedback here and click send",
  3. String subjectHint = "Subject…",
  4. String messageHint = "Your feedback…",
  5. String sendButtonText = "Send",
  6. String cancelButtonText = "Close",
})

Show a screen which asks for feedback. Once the user closes the modal or sends the feedback the Future promise resolves with the result.

Implementation

static Future<Uri?> getUserFeedback(
        {String title = "Feedback",
        String hint = "Please insert your feedback here and click send",
        String subjectHint = "Subject…",
        String messageHint = "Your feedback…",
        String sendButtonText = "Send",
        String cancelButtonText = "Close"}) =>
    _flutterBugfenderInterface.getUserFeedback(
        title: title,
        hint: hint,
        subjectHint: subjectHint,
        messageHint: messageHint,
        sendButtonText: sendButtonText,
        cancelButtonText: cancelButtonText);