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

8 lines
153 B
Dart

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