getRenderedUIComponentById<T extends UIComponent> method
Implementation
T? getRenderedUIComponentById<T extends UIComponent>(
dynamic id, [
bool? deep,
]) {
if (id == null) return null;
var components = getRenderedUIComponents(deep);
return components.whereType<T>().firstWhereOrNull((e) => e.id == id);
}