AuthResponse constructor

AuthResponse({
  1. required String responseCode,
  2. required String institutionId,
  3. required String authToken,
  4. required int expiry,
})

Implementation

AuthResponse({
  required this.responseCode,
  required this.institutionId,
  required this.authToken,
  required this.expiry,
});