LoginResponse constructor

LoginResponse({
  1. String? authToken,
  2. String? role,
  3. int? expiresIn,
})

Returns a new LoginResponse instance.

Implementation

LoginResponse({
  this.authToken,
  this.role,
  this.expiresIn,
});