InternalSession constructor

InternalSession({
  1. required Server server,
  2. bool enableLogging = true,
})

Creates a new InternalSession. Consider using the createSession method of ServerPod to create a new session.

Implementation

InternalSession({
  required super.server,
  super.enableLogging = true,
});