processFAAPresentStateChanged method
Implementation
void processFAAPresentStateChanged(String elementId, bool completed) {
final template = currentPresentTemplate;
if (template is AAAlertTemplate && template.onPresent != null) {
template.onPresent!(completed);
}
if (!completed) currentPresentTemplate = null;
}