toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
    json[r'name'] = this.name;
    json[r'code'] = this.code;
    json[r'maps'] = this.maps;
    json[r'skin'] = this.skin;
    json[r'duration'] = this.duration;
    json[r'rate'] = this.rate;
    json[r'content'] = this.content;
  return json;
}