class SpaceCheesePage { bool? next; SpaceCheesePage({this.next}); factory SpaceCheesePage.fromJson(Map json) => SpaceCheesePage( next: json['next'] as bool?, ); }