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