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

9 lines
162 B
Dart
Raw Normal View History

2023-07-24 20:23:09 +00:00
import 'dart:ffi';
import 'package:ffi/ffi.dart';
class Utf8Box extends Struct {
external Pointer<Utf8> value;
String getValue() => value.toDartString();
}