Assertion constructor

const Assertion({
  1. required String description,
  2. required bool passed,
  3. String? actual,
  4. String? expected,
})

Implementation

const Assertion({
  required this.description,
  required this.passed,
  this.actual,
  this.expected,
});