Flutter how to create boolean field in mapped Struct using FFIGen
I'm trying to using latest FFIGEN (11.0.0) and almost latest Flutter 3.16.4 (dart 3.2.3) This my my struct in C++ struct TestStruct { const char *name; bool isOnline; uint8_t batteryLevel; uint32_t timestamp; }; And this is exported using extern "C"…