Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
example/ | 04-Jul-2025 | - | 578 | 480 | ||
lib/ | 04-Jul-2025 | - | 2,847 | 2,481 | ||
test/ | 04-Jul-2025 | - | 6,520 | 5,821 | ||
CHANGELOG.md | D | 04-Jul-2025 | 1.8 KiB | 47 | 36 | |
LICENSE | D | 04-Jul-2025 | 11.1 KiB | 202 | 169 | |
README.md | D | 04-Jul-2025 | 966 | 16 | 11 | |
analysis_options.yaml | D | 04-Jul-2025 | 40 | 2 | 1 | |
publish.sh | D | 04-Jul-2025 | 1.1 KiB | 37 | 12 | |
pubspec.yaml | D | 04-Jul-2025 | 431 | 15 | 12 |
README.md
1# FlatBuffers for Dart 2 3This package is used to read and write [FlatBuffers](https://google.github.io/flatbuffers/). 4 5Most consumers will want to use the [`flatc` - FlatBuffer compiler](https://github.com/google/flatbuffers) binary for your platform. 6You can download the flatc version matching your dart package version from [GitHub releases](https://github.com/google/flatbuffers/releases). 7 8The FlatBuffer compiler `flatc` reads a FlatBuffers IDL schema and generates Dart code. 9The generated classes can be used to read or write binary data/files that are interoperable with 10other languages and platforms supported by FlatBuffers, as illustrated in the `example.dart` in the 11examples folder. 12 13For more details and documentation, head over to the official site and read the 14[Tutorial](https://google.github.io/flatbuffers/flatbuffers_guide_tutorial.html) and how to 15[use FlatBuffers in Dart](https://google.github.io/flatbuffers/flatbuffers_guide_use_dart.html). 16