intNotEmpty function

bool intNotEmpty(
  1. int? value
)

Implementation

bool intNotEmpty(int? value) {
  return (value != null && value != 0);
}