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';
}