toDocument method
Implementation
@override
Map<String, Object?> toDocument() {
final List<Map<String?, dynamic>>? itemsListMap =
items != null ? items!.map((item) => item.toDocument()).toList() : null;
final Map<String, dynamic>? backgroundMap =
background != null ? background!.toDocument() : 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 (animationMilliseconds != null) {
theDocument["animationMilliseconds"] = animationMilliseconds;
} else {
theDocument["animationMilliseconds"] = null;
}
if (imageSeconds != null) {
theDocument["imageSeconds"] = imageSeconds;
} else {
theDocument["imageSeconds"] = null;
}
if (items != null) {
theDocument["items"] = itemsListMap;
} else {
theDocument["items"] = null;
}
if (background != null) {
theDocument["background"] = backgroundMap;
} else {
theDocument["background"] = null;
}
if (conditions != null) {
theDocument["conditions"] = conditionsMap;
} else {
theDocument["conditions"] = null;
}
return theDocument;
}