intEmpty static method

bool intEmpty(
  1. int? value
)

int为空

Implementation

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