getCurrentSessionId static method

String getCurrentSessionId()

Implementation

static String getCurrentSessionId() {
  final userId = Prefs.getString('user_pseudo_id') ?? '';
  final sessionStart = getCurrentSessionStart();
  return '$userId:$sessionStart';
}