toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'form'] = form;
json[r'sections'] = sections;
if (description != null) {
json[r'description'] = description;
}
json[r'keywords'] = keywords;
return json;
}