isUsable static method

bool isUsable(
  1. int cols,
  2. int rows
)

Whether (cols, rows) is at least the usable floor.

Implementation

static bool isUsable(int cols, int rows) =>
    cols >= minCols && rows >= minRows;