Credentials constructor

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

Implementation

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