factory UpDrawerItem.fromJson(Map<String, dynamic> json) { UpDrawerItem drawerItem = UpDrawerItem( icon: json['icon'], title: json['title'], onTap: () {}, ); return drawerItem; }