isHttpPath static method

bool isHttpPath(
  1. String filePath
)

check http file path

Implementation

static bool isHttpPath(String filePath) {
  if ((filePath.toLowerCase()).startsWith('http')) {
    return true;
  } else {
    return false;
  }
}