port property

int? port

Implementation

int? get port => _port;
void port=(int? value)

Implementation

set port(int? value) {
  _port = value;
  notifyListeners();
}