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