enqueueOkAll method

void enqueueOkAll(
  1. Iterable<Object?> values
)

Queues successes carrying each of values, in order.

Implementation

void enqueueOkAll(Iterable<Object?> values) =>
    _queue.addAll(values.map(Ok<dynamic>.new));