isC property

bool isC

Checks if a file path or URL represents a C source file.

Implementation

bool get isC {
  final mt = mimeType();
  return mt == 'text/x-csrc';
}