visitCount property

int? get visitCount

The number of times the user has navigated to this page.

Implementation

int? get visitCount => _wrapped.visitCount;
set visitCount (int? v)

Implementation

set visitCount(int? v) {
  _wrapped.visitCount = v;
}