isAPK static method
Checks if string is an apk file.
Implementation
static bool isAPK(String filePath) {
return filePath.toLowerCase().endsWith(".apk");
}
Checks if string is an apk file.
static bool isAPK(String filePath) {
return filePath.toLowerCase().endsWith(".apk");
}