ServerStatsResponse constructor

ServerStatsResponse({
  1. required String serverID,
  2. required int up,
  3. required bool updated,
  4. required int bumps,
  5. bool? boost,
  6. bool? upSuccessfully,
  7. int? timeToNextUpInMs,
  8. String? message,
})

Implementation

ServerStatsResponse({
  required this.serverID,
  required this.up,
  required this.updated,
  required this.bumps,
  this.boost,
  this.upSuccessfully,
  this.timeToNextUpInMs,
  this.message
});