isPdf property

bool get isPdf

from fileName as test.pdf return true

Implementation

bool get isPdf {
  if (extention == "pdf") return true;
  return false;
}