flatbuffers/dart
Derek Bailey a2cd1ea3b6
FlatBuffers Version 24.12.23 (#8459)
* FlatBuffers Release 24.12.23

* Fixed missing generated file version checks

* Run generate_code and fix cpp17 tests
2024-12-23 12:55:07 -08:00
..
example
lib dart: Fix incorrect write in Float64 write method (#8290) 2024-05-29 01:13:10 +00:00
test dart: use enhanced enums (#8313) 2024-11-18 17:31:19 +00:00
analysis_options.yaml
CHANGELOG.md chore: Dart 23.5.26 release (#8160) 2023-11-18 11:56:54 -08:00
LICENSE removed BSD-3-Clause license and Zlib licenses (#7073) 2022-02-02 13:12:01 -08:00
publish.sh
pubspec.yaml FlatBuffers Version 24.12.23 (#8459) 2024-12-23 12:55:07 -08:00
README.md chore: Dart 23.5.26 release (#8160) 2023-11-18 11:56:54 -08:00

FlatBuffers for Dart

This package is used to read and write FlatBuffers.

Most consumers will want to use the flatc - FlatBuffer compiler binary for your platform. You can download the flatc version matching your dart package version from GitHub releases.

The FlatBuffer compiler flatc reads a FlatBuffers IDL schema and generates Dart code. The generated classes can be used to read or write binary data/files that are interoperable with other languages and platforms supported by FlatBuffers, as illustrated in the example.dart in the examples folder.

For more details and documentation, head over to the official site and read the Tutorial and how to use FlatBuffers in Dart.