toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final appliedLabels = this.appliedLabels;
  final id = this.id;
  final relation = this.relation;
  final title = this.title;
  final type = this.type;
  return {
    'appliedLabels': ?appliedLabels,
    'id': ?id,
    'relation': ?relation,
    'title': ?title,
    'type': ?type,
  };
}