AuthSession constructor

AuthSession({
  1. required String id,
  2. required String pubkey,
  3. required AuthType type,
  4. required DateTime createdAt,
  5. String? privateKey,
  6. String? bunkerUrl,
  7. String? token,
})

Implementation

AuthSession({
  required this.id,
  required this.pubkey,
  required this.type,
  required this.createdAt,
  this.privateKey,
  this.bunkerUrl,
  this.token,
});