getSessionId static method

Future<String?> getSessionId()

Returns the session id of the current session.

Implementation

static Future<String?> getSessionId() async {
  if (flurryAgent != null) {
    String sessionId = await flurryAgent!.getSessionId();
    return sessionId;
  }
  return null;
}