UserPassword class
Password of an User.
Password allows User to perform a sign-in, when combined with a UserLogin, UserNum, UserEmail or UserPhone.
Constructors
- UserPassword.new(String val)
- UserPassword.fromJson(String val)
- 
          Constructs a UserPassword from the provided val.factory
- UserPassword.unchecked(String val)
- 
          Creates an object without any validation.
            constfactory
Properties
Methods
- 
  noSuchMethod(Invocation invocation) → dynamic 
- 
  Invoked when a nonexistent method or property is accessed.
  inherited
- 
  toJson() → String 
- Returns a String representing this UserPassword.
- 
  toString() → String 
- 
  A string representation of this object.
  inherited
Operators
- 
  operator ==(Object other) → bool 
- 
  The equality operator.
  inherited
Static Methods
- 
  tryParse(String val) → UserPassword? 
- 
  Parses the provided valas a UserPassword, ifvalmeets the validation, or returnsnullotherwise.