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

9 lines
153 B
Dart
Raw Normal View History

2020-01-04 20:31:52 +01:00
import 'dart:ffi';
import 'package:ffi/ffi.dart';
class Utf8Box extends Struct {
Pointer<Utf8> value;
String getValue() => Utf8.fromUtf8(value);
}