intNotEmpty static method

bool intNotEmpty(
  1. int? value
)

int不为空

Implementation

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