toDocument method
Implementation
@override
Map<String, Object?> toDocument() {
final List<Map<String?, dynamic>>? bodyComponentsListMap =
bodyComponents != null
? bodyComponents!.map((item) => item.toDocument()).toList()
: null;
final Map<String, dynamic>? conditionsMap =
conditions != null ? conditions!.toDocument() : null;
Map<String, Object?> theDocument = HashMap();
if (appId != null) {
theDocument["appId"] = appId;
} else {
theDocument["appId"] = null;
}
if (description != null) {
theDocument["description"] = description;
} else {
theDocument["description"] = null;
}
if (bodyComponents != null) {
theDocument["bodyComponents"] = bodyComponentsListMap;
} else {
theDocument["bodyComponents"] = null;
}
if (imageId != null) {
theDocument["imageId"] = imageId;
} else {
theDocument["imageId"] = null;
}
if (imagePositionRelative != null) {
theDocument["imagePositionRelative"] = imagePositionRelative;
} else {
theDocument["imagePositionRelative"] = null;
}
if (imageAlignment != null) {
theDocument["imageAlignment"] = imageAlignment;
} else {
theDocument["imageAlignment"] = null;
}
if (imageWidth != null) {
theDocument["imageWidth"] = imageWidth;
} else {
theDocument["imageWidth"] = null;
}
if (conditions != null) {
theDocument["conditions"] = conditionsMap;
} else {
theDocument["conditions"] = null;
}
return theDocument;
}