username property

String username

The value for the username form field

This value will be used during sign up, sign in, or other actions that required the username

Implementation

String get username => _username;
void username=(String value)

Implementation

set username(String value) {
  _username = value;
  notifyListeners();
}