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