pendingCount property
int
get
pendingCount
Number of HTTP requests currently in flight on this adapter.
Default body returns 0 ; existing implementations (DioHttpAdapter,
alpha-1 third-party adapters) get the default without changes.
Implementations that track in-flight requests (e.g. magic's
MagicHttpFacadeAdapter) override this to expose the live count.
Surfaced by TelescopeStore.pendingHttpCount (sum across all
registered adapters); consumed by tools that synchronise on
"network idle" (dusk wait_for_network_idle).
Implementation
int get pendingCount => 0;