lower static method

RustBuffer lower(
  1. OutPoint value
)

Implementation

static RustBuffer lower(OutPoint value) {
  final total_length = FfiConverterTxid.allocationSize(value.txid) +
      FfiConverterUInt32.allocationSize(value.vout) +
      0;
  final buf = Uint8List(total_length);
  write(value, buf);
  return toRustBuffer(buf);
}