toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final description = this.description;
  final discoveryLink = this.discoveryLink;
  final discoveryRestUrl = this.discoveryRestUrl;
  final documentationLink = this.documentationLink;
  final icons = this.icons;
  final id = this.id;
  final kind = this.kind;
  final labels = this.labels;
  final name = this.name;
  final preferred = this.preferred;
  final title = this.title;
  final version = this.version;
  return {
    'description': ?description,
    'discoveryLink': ?discoveryLink,
    'discoveryRestUrl': ?discoveryRestUrl,
    'documentationLink': ?documentationLink,
    'icons': ?icons,
    'id': ?id,
    'kind': ?kind,
    'labels': ?labels,
    'name': ?name,
    'preferred': ?preferred,
    'title': ?title,
    'version': ?version,
  };
}