deploymentUpdated method
Mark the deployment as updated.
Print the optional message and notify listeners of a deployment update event.
If deployment is null, nothing happens.
Implementation
void deploymentUpdated([String? message]) {
if (deployment != null) {
if (message != null) print(message);
createEvent(
StudyStatusEvent(this, StudyStatusEventTypes.DeploymentUpdated),
);
notifyListeners();
}
}