[Dart] Implement putBool to fix errors when serializing structs with bools (#7359)

* [Dart] Implement putBool to fix errors when serializing structs with bools

* Add tests
This commit is contained in:
Will Hughes
2022-06-29 03:16:47 +12:00
committed by GitHub
parent 1b90300150
commit b9eea76a86
4 changed files with 38 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
// Test for #7355
table Foo {
my_foo : foo_properties;
}
struct foo_properties
{
a : bool;
b : bool;
}