JsonReporter constructor

JsonReporter({
  1. String path = './report.json',
  2. Future<void> writeReport(
    1. String jsonReport,
    2. String path
    )?,
})

Implementation

JsonReporter({
  this.path = './report.json',
  this.writeReport,
});