isIntEmpty function

bool isIntEmpty(
  1. int? value
)

Implementation

bool isIntEmpty(int? value) {
  return (value == null);
}