toDocument method
Implementation
@override
Map<String, Object?> toDocument() {
final Map<String, dynamic>? actionMap =
action != null ? action!.toDocument() : null;
Map<String, Object?> theDocument = HashMap();
if (text != null) {
theDocument["text"] = text;
} else {
theDocument["text"] = null;
}
if (description != null) {
theDocument["description"] = description;
} else {
theDocument["description"] = null;
}
if (action != null) {
theDocument["action"] = actionMap;
} else {
theDocument["action"] = null;
}
return theDocument;
}