fullUrl property
String
get
fullUrl
Returns the full URL of the LCD endpoint
Implementation
String get fullUrl {
var hostWithProtocol = host;
if (!hostWithProtocol.startsWith(RegExp('http(s)?://'))) {
hostWithProtocol = 'http://$hostWithProtocol';
}
return '$hostWithProtocol:$port';
}