isAbsolute static method

bool isAbsolute(
  1. String url
)

Check if a URL is absolute (starts with http:// or https://)

Implementation

static bool isAbsolute(String url) {
  return url.startsWith('http://') || url.startsWith('https://');
}