mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-26 13:39:39 +00:00
8 lines
191 B
Dart
8 lines
191 B
Dart
|
import 'dart:ffi';
|
||
|
import 'package:ffi/ffi.dart';
|
||
|
|
||
|
String convertUTF8ToString({required Pointer<Utf8> pointer}) {
|
||
|
final str = pointer.toDartString();
|
||
|
calloc.free(pointer);
|
||
|
return str;
|
||
|
}
|