Home | History | Annotate | only in /external/flatbuffers/dart
Up to higher level directory
NameDateSize
CHANGELOG.md22-Oct-2020278
example/22-Oct-2020
lib/22-Oct-2020
LICENSE22-Oct-202012.8K
publish.sh22-Oct-20201.1K
pubspec.yaml22-Oct-2020650
README.md22-Oct-2020700
test/22-Oct-2020

README.md

      1 # FlatBuffers for Dart
      2 
      3 This package is used to read and write FlatBuffer files in Dart.
      4 
      5 Most consumers will want to use the [`flatc`](https://github.com/google/flatbuffers)
      6 compiler 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
      9 or write binary files that are interoperable with other languages and platforms
     10 supported by FlatBuffers, as illustrated in the `example.dart` in the
     11 examples folder.
     12 
     13 Additional documentation and examples are available [at the FlatBuffers site](https://google.github.io/flatbuffers/index.html)