isdigit method

int isdigit(
  1. int _C
)

Implementation

int isdigit(
  int _C,
) {
  return (_isdigit ??=
      _dylib.lookupFunction<_c_isdigit, _dart_isdigit>('isdigit'))(
    _C,
  );
}