isNonNegativeIntegerLike static method

bool isNonNegativeIntegerLike(
  1. Object? raw
)

Implementation

static bool isNonNegativeIntegerLike(Object? raw) {
  return parseNonNegativeInt(raw) != null;
}