toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final name = this.name;
final status = this.status;
final url = this.url;
final weight = this.weight;
final won = this.won;
return {
'name': ?name,
'status': ?status,
'url': ?url,
'weight': ?weight,
'won': ?won,
};
}