urlHost property
The host of url
;
Implementation
String get urlHost {
switch (address) {
case '0.0.0.0':
case '127.0.0.1':
return 'localhost';
default:
return address;
}
}
The host of url
;
String get urlHost {
switch (address) {
case '0.0.0.0':
case '127.0.0.1':
return 'localhost';
default:
return address;
}
}