toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final annotations = this.annotations;
  final description = this.description;
  final name = this.name;
  return {
    'annotations': ?annotations,
    'description': ?description,
    'name': ?name,
  };
}