checkHor function

bool checkHor(
  1. dynamic width,
  2. dynamic height
)

Implementation

bool checkHor(width, height) {
  if (width > height + 10) {
    return true;
  }
  return false;
}