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