getSessionTimestamp method

Future<int?> getSessionTimestamp()

Implementation

Future<int?> getSessionTimestamp() async {
  await _ensureInitialized();
  return _userBox!.get(sessionTimestampKey);
}