resolveOutputs method
void
resolveOutputs(
- Struct outputs
inherited
Resolves all output properties from a monitor response payload.
Implementation
void resolveOutputs(Struct outputs) {
_pendingResolvedOutputs = outputs;
if (completionSources.isEmpty) {
return;
}
for (final entry in completionSources.entries) {
_resolveCompletionSource(entry.key, entry.value, outputs);
}
}