|
1 2 3 4 5 6 |
static Pointer<Uint8> generateUint8ListPointer(Uint8List types) { final blob = calloc<Uint8>(types.length); final blobBytes = blob.asTypedList(types.length); blobBytes.setAll(0, types); return blob; } |
|
1 2 3 4 5 6 |
static Pointer<Uint8> generateUint8ListPointer(Uint8List types) { final blob = calloc<Uint8>(types.length); final blobBytes = blob.asTypedList(types.length); blobBytes.setAll(0, types); return blob; } |