malloc method

Object? malloc(
  1. int size
)

Implementation

Object? malloc(int size) {
  _checkNonNegative(size, 'size');
  return _mallocCallback(size);
}