read static method
Implementation
static LiftRetVal<Transaction> read(Uint8List buf) {
final handle = buf.buffer.asByteData(buf.offsetInBytes).getInt64(0);
final pointer = Pointer<Void>.fromAddress(handle);
return LiftRetVal(Transaction.lift(pointer), 8);
}