StopAfterSeverity constructor

const StopAfterSeverity({
  1. bool failure = false,
  2. bool warning = false,
  3. bool info = false,
  4. bool success = false,
})

Implementation

const StopAfterSeverity({
  this.failure = false,
  this.warning = false,
  this.info = false,
  this.success = false
});