isPDF property

bool get isPDF

Checks if string is an pdf file.

Implementation

bool get isPDF {
  return _string.toLowerCase().endsWith(".pdf");
}