isLocal property

bool get isLocal

True if the visit originated on this device. False if it was synced from a different device.

Implementation

bool get isLocal => _wrapped.isLocal;
set isLocal (bool v)

Implementation

set isLocal(bool v) {
  _wrapped.isLocal = v;
}