flatbuffers/dart
Ivan Dlugos 256ab3798d
WIP: Dart release 2.0 (#6927)
* chore: make flatc artifacts from CI executable

* chore: prepare dart 2.0.0 release

* refactor: update description in pubspec.yaml to make pub.dev happy

"The package description is too long.
Search engines display only the first part of the description. Try to keep the value of the description field in your package's pubspec.yaml file between 60 and 180 characters."
2021-11-18 10:56:29 -08:00
..
example dart - add Packable interface (#6846) 2021-09-28 13:23:30 -07:00
lib dart - add Packable interface (#6846) 2021-09-28 13:23:30 -07:00
test dart - add Packable interface (#6846) 2021-09-28 13:23:30 -07:00
CHANGELOG.md WIP: Dart release 2.0 (#6927) 2021-11-18 10:56:29 -08:00
LICENSE Add [Dart] support (#4676) 2018-05-18 11:06:15 -07:00
README.md WIP: Dart release 2.0 (#6927) 2021-11-18 10:56:29 -08:00
analysis_options.yaml Dart lints (#6808) 2021-08-30 12:54:59 -07:00
publish.sh Dart 2.0 release prep (#6759) 2021-08-02 13:31:36 -07:00
pubspec.yaml WIP: Dart release 2.0 (#6927) 2021-11-18 10:56:29 -08:00

README.md

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:

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.