factory DrawerModel.fromJson(Map<String, dynamic> json) { return DrawerModel( title: json['title'] as String?, icon: json['icon'] as Widget?, route: json['route'] as String?, ); }