lower static method
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);
}