Returns true if n > 0. If n is null returns false.
true
n > 0
n
bool isPositiveNumber(num? n) => n != null && n > 0;