oxen-mobile-wallet/cw_monero/lib/structs/ut8_box.dart

9 lines
153 B
Dart

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