toJson method
Returns a serialized JSON structure of the model which also includes fields used by the database.
Implementation
@override
Map<String, dynamic> toJson() {
return {
'__className__': 'serverpod_auth_core.ServerSideSession',
if (id != null) 'id': id?.toJson(),
'authUserId': authUserId.toJson(),
if (authUser != null) 'authUser': authUser?.toJson(),
'scopeNames': scopeNames.toJson(),
'createdAt': createdAt.toJson(),
'lastUsedAt': lastUsedAt.toJson(),
if (expiresAt != null) 'expiresAt': expiresAt?.toJson(),
if (expireAfterUnusedFor != null)
'expireAfterUnusedFor': expireAfterUnusedFor?.toJson(),
'sessionKeyHash': sessionKeyHash.toJson(),
'sessionKeySalt': sessionKeySalt.toJson(),
'method': method,
};
}