toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final annotation = this.annotation;
final overriddenValue = this.overriddenValue;
final value = this.value;
return {
'annotation': ?annotation,
'overriddenValue': ?overriddenValue,
'value': ?value,
};
}