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['code'] = code;
data['limit'] = limit;
data['used'] = used;
data['amount'] = amount;
data['amountType'] = amountType;
data['type'] = type;
if (products != null) {
data['products'] = products!.map((v) => v.toJson()).toList();
}
if (categories != null) {
data['categories'] = categories!.map((v) => v.toJson()).toList();
}
return data;
}