Remove directory
bool removeDir(String dirPath) { try { final dir = Directory(dirPath); dir.deleteSync(recursive: true); return true; } catch (_) { return false; } }