isEOT property

bool isEOT

Checks if a file path or URL represents an Embedded OpenType file.

Implementation

bool get isEOT {
  final mt = mimeType();
  return mt == 'application/vnd.ms-fontobject';
}