cake_wallet/cw_wownero/lib/api/structs/ut8_box.dart

9 lines
162 B
Dart
Raw Normal View History

2024-06-06 21:36:54 +00:00
import 'dart:ffi';
import 'package:ffi/ffi.dart';
class Utf8Box extends Struct {
external Pointer<Utf8> value;
String getValue() => value.toDartString();
}