toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'status'] = this.status;
json[r'version'] = this.version;
json[r'max_level'] = this.maxLevel;
json[r'characters_online'] = this.charactersOnline;
json[r'server_time'] = this.serverTime.toUtc().toIso8601String();
json[r'announcements'] = this.announcements;
json[r'last_wipe'] = this.lastWipe;
json[r'next_wipe'] = this.nextWipe;
return json;
}