clear method

void clear()

Implementation

void clear() {
  if (_prefs != null) {
    _prefs!.remove(kFirstVisit);
    _prefs!.remove(kLastVisit);
    _prefs!.remove(kVisitCount);
    _prefs!.remove(kVisitorId);
  }
}