toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
  json[r'cooldown'] = this.cooldown;
  json[r'destination'] = this.destination;
  json[r'path'] = this.path;
  json[r'character'] = this.character;
  return json;
}