thenEmit method

void thenEmit(
  1. List<T> values
)

Stub to emit values in order.

Implementation

void thenEmit(List<T> values) => thenAnswer((_) => Stream.fromIterable(values));