ShareReporter constructor

const ShareReporter({
  1. String subjectPrefix = 'Bug Report',
  2. String textBuilder(
    1. ReportEvent event
    )?,
  3. String fileNameBuilder(
    1. ReportEvent event
    )?,
})

Creates a share reporter with optional customization hooks for text and filenames.

Implementation

const ShareReporter({
  this.subjectPrefix = 'Bug Report',
  this.textBuilder,
  this.fileNameBuilder,
});