AuthorizationSessionDto constructor

AuthorizationSessionDto({
  1. String? sessionId,
  2. String? email,
  3. String? name,
  4. DateTime? lastLogin,
})

Implementation

AuthorizationSessionDto({
  this.sessionId,
  this.email,
  this.name,
  this.lastLogin,
});