AuthSessionSnapshot constructor

const AuthSessionSnapshot({
  1. required String token,
  2. required Session? session,
  3. required DateTime? expiresAt,
})

Implementation

const AuthSessionSnapshot({
  required this.token,
  required this.session,
  required this.expiresAt,
});