Expectation constructor

Expectation({
  1. String? path,
  2. required String message,
  3. dynamic value,
  4. String? code,
  5. Map<String, Object?>? data,
})

Implementation

Expectation({
  this.path,
  required this.message,
  this.value,
  this.code,
  this.data,
});