isvalidUrl property

bool get isvalidUrl

Implementation

bool get isvalidUrl {
  if (Uri.parse(this).isAbsolute) {
    return true;
  }
  return false;
}