UserPassword constructor

UserPassword({
  1. String? password,
  2. bool? passwordSet,
  3. String? user,
})

Implementation

UserPassword({
  this.password,
  this.passwordSet,
  this.user,
});