processFCPSearchButtonPressed method
Implementation
void processFCPSearchButtonPressed(String elementId) {
for (var t in templateHistory) {
if (t is CPSearchTemplate && t.uniqueId == elementId) {
t.onSearchTemplateSearchButtonPressed?.call();
return;
}
}
}