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