import 'package:manager_app/Models/menuSection.dart'; class Menu { String title; List? sections; Menu({required this.title, this.sections}); factory Menu.fromJson(Map json) { return new Menu( title: json['title'] as String, sections: json['sections'] as List, ); } Map toMap() { return { 'title': title, 'sections': sections }; } @override String toString() { return '{title: $title, sections: $sections}'; } }