ExpectedEnvelope constructor

const ExpectedEnvelope({
  1. Map<String, dynamic>? state,
  2. List<int>? pending,
  3. List? outcome,
  4. bool assertsOutcome = false,
})

Implementation

const ExpectedEnvelope({
  this.state,
  this.pending,
  this.outcome,
  this.assertsOutcome = false,
});