getUrl property

String getUrl

Build the URL from context parameters

Implementation

String get getUrl {
  if (ssl == true) {
    return 'https://$address:$port$path';
  } else {
    return 'http://$address:$port$path';
  }
}