getSessionTimestamp method

int? getSessionTimestamp()

Implementation

int? getSessionTimestamp() {
  try {
    return _prefs?.getInt(_sessionTimestampKey) ?? _fallbackSessionTimestamp;
  } catch (e) {
    return _fallbackSessionTimestamp;
  }
}