class Page { int? id; Page({ this.id, }); factory Page.fromJson(Map json) => Page( id: json["id"], ); }