idCount property

int get idCount

The total number of ids across every call — equal to callCount times the batch size only if no de-duplication happened.

Implementation

int get idCount => calls.fold(0, (sum, ids) => sum + ids.length);