parseChildElementValue method

String? parseChildElementValue(
  1. UIElement? childElement, {
  2. UIComponent? childUiComponent,
  3. bool allowTextAsValue = true,
})
inherited

Implementation

String? parseChildElementValue(UIElement? childElement,
        {UIComponent? childUiComponent, bool allowTextAsValue = true}) =>
    childElement?.resolveElementValue(
        parentUIComponent: this,
        uiComponent: childUiComponent,
        allowTextAsValue: allowTextAsValue);