cake_wallet/cw_wownero/lib/api/structs/ut8_box.dart
2024-06-06 23:36:54 +02:00

8 lines
162 B
Dart

import 'dart:ffi';
import 'package:ffi/ffi.dart';
class Utf8Box extends Struct {
external Pointer<Utf8> value;
String getValue() => value.toDartString();
}