Session constructor
Session({})
Creates a new Session instance.
All parameters are required except ipAddress, userAgent, and isCurrent.
Implementation
Session({
required this.id,
required this.user,
required this.token,
required this.expiresAt,
this.ipAddress,
this.userAgent,
this.isCurrent = false,
required this.createdAt,
});