TestConfiguration constructor

const TestConfiguration({
  1. String? apps,
  2. String? feature,
  3. String? page,
  4. required bool isCoverage,
  5. String? reporter,
  6. String? fileReporter,
})

Implementation

const TestConfiguration({
  this.apps,
  this.feature,
  this.page,
  required this.isCoverage,
  this.reporter,
  this.fileReporter,
});