hasMore property

bool hasMore

Returns true if there are more messages to be fetched.

Keep in mind, that before the first more call, it will always be true.

Implementation

bool get hasMore =>
    _hasMoreOverride == false && _cursor?.value != BigInt.zero;