UserSessionResponse constructor

const UserSessionResponse({
  1. required String sessionIdHash,
  2. required String createdAt,
  3. required String approxLastUsedAt,
  4. required String clientIp,
  5. required String? clientIpReverse,
  6. required String? clientOs,
  7. required String? clientPlatform,
  8. required String? clientLocation,
})

Implementation

const UserSessionResponse({
  required this.sessionIdHash,
  required this.createdAt,
  required this.approxLastUsedAt,
  required this.clientIp,
  required this.clientIpReverse,
  required this.clientOs,
  required this.clientPlatform,
  required this.clientLocation,
});