isCSS property
bool
get
isCSS
Checks if a file path or URL represents a CSS file.
Implementation
bool get isCSS {
final mt = mimeType();
return mt == 'text/css';
}
Checks if a file path or URL represents a CSS file.
bool get isCSS {
final mt = mimeType();
return mt == 'text/css';
}