stop method

void stop(
  1. String uuid
)

Implementation

void stop(String uuid) {
  final uuidPtr = StringUtf8Pointer(uuid).toNativeUtf8();
  final _stop = _stopPtr.asFunction<_StopDart>();

  try {
    _getTransferResponseData(_stop(uuidPtr));
  } finally {
    calloc.free(uuidPtr);
  }
}