flatbuffers/dart
Ivan Dlugos a6eeeb3b9c
Dart - inline small functions to increase performance (#6755)
~25 % for reading
~30-35 % for writing
2021-07-26 10:09:46 -07:00
..
example Dart - make writeString() argument non-nullable (#6737) 2021-07-20 07:54:48 -07:00
lib Dart - inline small functions to increase performance (#6755) 2021-07-26 10:09:46 -07:00
test Dart - optimize writeString for ASCII (#6736) 2021-07-22 10:36:37 -07:00
CHANGELOG.md
LICENSE
publish.sh Fix up scripts, fix generated enum value for strong mode, regenerate files (#6389) 2021-01-07 14:51:52 -08:00
pubspec.yaml Dart null safety (#6696) 2021-06-22 08:54:57 -07:00
README.md

FlatBuffers for Dart

This package is used to read and write FlatBuffer files in Dart.

Most consumers will want to use the flatc compiler to generate Dart code from a FlatBuffers IDL schema. For example, the monster_my_game.sample_generated.dart was generated with flatc from monster.fbs in the example folder. The generated classes can be used to read or write binary files that are interoperable with other languages and platforms supported by FlatBuffers, as illustrated in the example.dart in the examples folder.

Additional documentation and examples are available at the FlatBuffers site