toJson method
Implementation
@override
Map<String, dynamic> toJson() => {
'type': 'boolean',
if (title != null) 'title': title,
if (description != null) 'description': description,
if (defaultValue != null) 'default': defaultValue,
};