toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final advices = this.advices;
  final changeType = this.changeType;
  final element = this.element;
  final newValue = this.newValue;
  final oldValue = this.oldValue;
  return {
    'advices': ?advices,
    'changeType': ?changeType,
    'element': ?element,
    'newValue': ?newValue,
    'oldValue': ?oldValue,
  };
}