isHTML static method
Checks if string is an html file.
Implementation
static bool isHTML(String filePath) {
return filePath.toLowerCase().endsWith(".html");
}
Checks if string is an html file.
static bool isHTML(String filePath) {
return filePath.toLowerCase().endsWith(".html");
}