canNext property

bool canNext

If the number of elements is limited by ModelQueryFilterType.limit, returns true if the next element can be added.

If the number of elements does not change when the next method is executed, canNext will be false.

ModelQueryFilterType.limitで要素数を制限されている場合、次の要素が追加可能な場合trueを返します。

nextメソッドを実行した際に要素数が変わらなかった場合、canNextfalseになります。

Implementation

bool get canNext => _canNext;