toJson method

Map<String, dynamic> toJson()

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,
  };
}