username property

String? username

Implementation

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

Implementation

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