AuthSessionResponse constructor

const AuthSessionResponse({
  1. required String idHash,
  2. required bool current,
  3. AuthSessionClientInfo? clientInfo,
  4. DateTime? approxLastUsedAt,
})

Implementation

const AuthSessionResponse({
  required this.idHash,
  required this.current,
  this.clientInfo,
  this.approxLastUsedAt,
});