reserve method Null safety

void reserve(
  1. int size
)

Implementation

void reserve(int size) {
  var exception = _getException();

  final constructor = _dll_handle.lookupFunction<_Context_reserve_c, _Context_reserve_dart>(_context_namespace + 'reserve');

  constructor(_impl, size, exception);

  tdvCheckException(exception, _dll_handle);
}