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