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