How to assign default value as null in apache thrift Interface definition language? I tried following, but it throw FileParseException
.
struct User {
1: string name,
2: optional string description = "",
3: optional string address = null //doesn't work.
}