For example , Here is the protobuf schema code, I want to rewrite them by flatbuffer schema? what is the code like ?
message Xx {
required uint32 id = 1;
optional string name = 2;
message Yy {
optional string name = 1;
}
repeated Yy y = 3;
}
thank you my bro.