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