BurtCan_create method

Pointer<BurtCan> BurtCan_create(
  1. Pointer<Utf8> interface1,
  2. int readTimeout,
  3. BurtCanType type
)

Implementation

ffi.Pointer<BurtCan> BurtCan_create(
  ffi.Pointer<pkg_ffi.Utf8> interface1,
  int readTimeout,
  BurtCanType type,
) {
  return _BurtCan_create(
    interface1,
    readTimeout,
    type.value,
  );
}