Function optional
Attribute marking a field as optional during deserialization.
Example
struct Test {
// does not need to be present during deserialization
@optional int screenSize = 100;
}
Attribute marking a field as optional during deserialization.
struct Test {
// does not need to be present during deserialization
@optional int screenSize = 100;
}