toJson method
Implementation
Map<String, dynamic> toJson() {
return {
'web_section': webSection,
'web_section_kh': webSectionKh,
'section': section,
'section_kh': sectionKh,
'items': items.map((model) => model.toJson()).toList(),
};
}