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