Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
example/ | 03-May-2024 | - | 597 | 498 | ||
lib/ | 03-May-2024 | - | 1,242 | 1,048 | ||
test/ | 03-May-2024 | - | 2,243 | 1,977 | ||
CHANGELOG.md | D | 03-May-2024 | 278 | 14 | 8 | |
LICENSE | D | 03-May-2024 | 12.8 KiB | 234 | 197 | |
README.md | D | 03-May-2024 | 700 | 13 | 10 | |
publish.sh | D | 03-May-2024 | 1.1 KiB | 28 | 6 | |
pubspec.yaml | D | 03-May-2024 | 650 | 20 | 19 |
README.md
1# FlatBuffers for Dart 2 3This package is used to read and write FlatBuffer files in Dart. 4 5Most consumers will want to use the [`flatc`](https://github.com/google/flatbuffers) 6compiler to generate Dart code from a FlatBuffers IDL schema. For example, the 7`monster_my_game.sample_generated.dart` was generated with `flatc` from 8`monster.fbs` in the example folder. The generated classes can be used to read 9or write binary files that are interoperable with other languages and platforms 10supported by FlatBuffers, as illustrated in the `example.dart` in the 11examples folder. 12 13Additional documentation and examples are available [at the FlatBuffers site](https://google.github.io/flatbuffers/index.html)