toPostJson method
Converts the body data model to a JSON object for a POST request.
This method should be implemented by subclasses to convert their specific data to a JSON object. It should only include properties that need to be sent in a POST request.
Implementation
@override
Map<String, dynamic>? toPostJson() {
final Map<String, dynamic> data = <String, dynamic>{};
data['id'] = id;
data['storeId'] = storeId;
data['email'] = email?.toPostJson();
data['sms'] = sms?.toPostJson();
data['customer'] = customer?.toPostJson();
data['campaign'] = campaign?.toPostJson();
data['order'] = order?.toPostJson();
data['product'] = product?.toPostJson();
data['currency'] = currency?.toPostJson();
data['analytic'] = analytic?.toPostJson();
return data;
}