toJson method
Implementation
Map<String, dynamic> toJson() {
final _json = <String, dynamic>{};
if (title != null) {
_json[r'Title'] = title;
}
if (value != null) {
_json[r'Value'] = value;
}
if (short != null) {
_json[r'Short'] = short;
}
return _json;
}