toJson method

Map<String, dynamic> toJson()

Implementation

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