class ServerTime { final int? timestamps; ServerTime({this.timestamps,}); factory ServerTime.fromJson(Map json) { return ServerTime(timestamps: json['timestamps'],); } Map toJson() => { 'timestamps': timestamps,}; }