numberOfItems property

int? get numberOfItems

Provides a hint about the expected number of items returned.

Implementation

int? get numberOfItems =>
    (this["numberOfItems"] as int?)?.takeIf((it) => it >= 0);