system method

int system(
  1. Pointer<Int8> _Command
)

Implementation

int system(
  ffi.Pointer<ffi.Int8> _Command,
) {
  return (_system ??=
      _dylib.lookupFunction<_c_system, _dart_system>('system'))(
    _Command,
  );
}