isFoldableDevice static method
Implementation
static bool isFoldableDevice(SystemInfo info) {
for (final feature in info.displayFeatures) {
if (feature.type == ui.DisplayFeatureType.fold ||
feature.type == ui.DisplayFeatureType.hinge) {
return true;
}
}
return false;
}