findUIComponentByID method

UIComponent? findUIComponentByID(
  1. String id
)
inherited

Implementation

UIComponent? findUIComponentByID(String id) {
  if (id.startsWith('#')) id = id.substring(1);
  if (isEmptyString(id)) return null;
  return _findUIComponentByIDImpl(id);
}