toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final newIndex = this.newIndex;
final newRule = this.newRule;
final oldIndex = this.oldIndex;
final oldRule = this.oldRule;
return {
'newIndex': ?newIndex,
'newRule': ?newRule,
'oldIndex': ?oldIndex,
'oldRule': ?oldRule,
};
}