UserPassword constructor

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

Implementation

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