I've the Dart type as:
typedef dart_func = String Function(String x);
And want to map it with Dart FFi, but their could not find neither String, nor Utf8, I tried
typedef ffi_func = ffi.Pointer<Utf8> Function(ffi.Pointer<Utf8> x);
But it failed, and gave that Utf8
isn't a type