toJson method

  1. @override
Map<String, dynamic> toJson()
override

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['name'] = name;
  data['slug'] = slug;
  data['sortIndex'] = sortIndex;
  if (photos != null) {
    data['photos'] = photos!.map((v) => v.toJson()).toList();
  }
  if (store != null) {
    data['store'] = store!.toJson();
  }
  data['tax'] = tax;
  if (children != null) {
    data['children'] = children!.map((v) => v.toJson()).toList();
  }
  return data;
}