server_time.dart 266 B

1234567891011
  1. class ServerTime {
  2. final int? timestamps;
  3. ServerTime({this.timestamps,});
  4. factory ServerTime.fromJson(Map<String, dynamic> json) {
  5. return ServerTime(timestamps: json['timestamps'],);
  6. }
  7. Map<String, dynamic> toJson() => { 'timestamps': timestamps,};
  8. }