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