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