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