phone property

String? get phone

Implementation

String? get phone => _phone;
set phone (String? value)

Implementation

set phone(String? value) {
  _phone = value;
  notifyListeners();
}