newPassword property

String get newPassword

The value for the new password form field

This value will be used during reset password, or other actions that required the password

Implementation

String get newPassword => _newPassword;
set newPassword (String value)

Implementation

set newPassword(String value) {
  _newPassword = value.trim();
  notifyListeners();
}