toDocument method
Implementation
@override
Map<String, Object?> toDocument() {
final Map<String, dynamic>? succeededMap =
succeeded != null ? succeeded!.toDocument() : null;
final Map<String, dynamic>? payActionMap =
payAction != null ? payAction!.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 (succeeded != null) {
theDocument["succeeded"] = succeededMap;
} else {
theDocument["succeeded"] = null;
}
if (payAction != null) {
theDocument["payAction"] = payActionMap;
} else {
theDocument["payAction"] = null;
}
if (shopId != null) {
theDocument["shopId"] = shopId;
} else {
theDocument["shopId"] = null;
}
if (conditions != null) {
theDocument["conditions"] = conditionsMap;
} else {
theDocument["conditions"] = null;
}
return theDocument;
}