orientationType method
Implementation
OrientationType orientationType() {
if (screenHeight / screenWidth > 1) {
return OrientationType.portrait();
}
return OrientationType.landscape();
}
OrientationType orientationType() {
if (screenHeight / screenWidth > 1) {
return OrientationType.portrait();
}
return OrientationType.landscape();
}