read static method

Implementation

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