isLocalUrl property

bool get isLocalUrl

Implementation

bool get isLocalUrl {
  return startsWith('/') ||
      startsWith('file://') ||
      (length > 1 && substring(1).startsWith(':\\'));
}