LoginCredentials constructor

LoginCredentials({
  1. String? username,
  2. String? password,
})

Returns a new LoginCredentials instance.

Implementation

LoginCredentials({
  this.username,
  this.password,
});