AuthResponse constructor

AuthResponse({
  1. required String token,
  2. required String refreshToken,
})

Implementation

AuthResponse({
  required this.token,
  required this.refreshToken,
});