showAndUploadToSentry method

void showAndUploadToSentry({
  1. Hub? hub,
  2. String? name,
  3. String? email,
})

This method opens the feedback ui and the users feedback is uploaded to Sentry after the user submitted his feedback. name and email are optional. They are shown in the Sentry.io ui.s

Implementation

void showAndUploadToSentry({
  Hub? hub,
  String? name,
  String? email,
}) {
  this.show(sendToSentry(
    hub: hub,
    name: name,
    email: email,
  ));
}