strtoull method
Implementation
int strtoull(
ffi.Pointer<ffi.Int8> _String,
ffi.Pointer<ffi.Pointer<ffi.Int8>> _EndPtr,
int _Radix,
) {
return (_strtoull ??=
_dylib.lookupFunction<_c_strtoull, _dart_strtoull>('strtoull'))(
_String,
_EndPtr,
_Radix,
);
}