expectMappedLater<R> method

Future expectMappedLater<R>(
  1. R mapper(
    1. T o
    ),
  2. dynamic matcher, {
  3. String? reason,
})

Implementation

Future expectMappedLater<R>(
  R Function(T o) mapper,
  dynamic matcher, {
  String? reason,
}) => thenChain(
  (o) => pkg_test.expectLater(mapper(o), matcher, reason: reason),
);