toJson method
Converts the BaseDTO to a JSON object.
This method can be used when making HTTP requests to convert the DTO to a format that can be sent in the request.
Implementation
@override
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = super.toJson();
data['url'] = url;
data['name'] = name;
data['description'] = description;
data['alt'] = alt;
if (folder != null) {
data['folder'] = folder!.toJson();
}
return data;
}