missingDecisions function
Implementation
List<String> missingDecisions(Map<String, Object?> decisions) => decisions
.entries
.where(
(entry) =>
entry.value == null ||
entry.value == '' ||
(entry.value is List && (entry.value! as List).isEmpty),
)
.map((entry) => entry.key)
.toList();