getSessionId method

Future<int?> getSessionId()

Retrieves the current session ID.

Use this to get the current session identifier for tracking or debugging purposes.

Returns the current session ID, or null if no session is active.

Implementation

Future<int?> getSessionId() async {
  throw UnimplementedError('getSessionId() has not been implemented');
}