isPar static method

bool isPar(
  1. num n
)

Implementation

static bool isPar(num n) {
  return n % 2 == 0;
}