isPDF static method

bool isPDF(
  1. String string
)

Check file is pdf or not

Implementation

static bool isPDF(String string) => string.toLowerCase().endsWith(".pdf");