What is canonical way to store NULL value in FlatBuffers ?
I have
ExpirationDate *int64
I understand why FlatBuffers is not defining NULL. But I do not understand how to handle that properly. Should I have extra bool field or make value a array?
ExpirationDate [int64]
vs
ExpirationDate int64
ExpirationDateNull bool
For tables may be I can use also union
.