internalUseOfAz method

AzText internalUseOfAz({
  1. dynamic thisStyle,
  2. dynamic thisStrutStyle,
  3. dynamic thisTextAlign,
  4. dynamic thisTextDirection,
  5. dynamic thisLocale,
  6. dynamic thisSoftWrap,
  7. dynamic thisOverflow,
  8. dynamic thisTextScaler,
  9. dynamic thisMaxLines,
  10. dynamic thisSemanticsLabel,
  11. dynamic thisTextWidthBasis,
  12. dynamic thisTextHeightBehavior,
  13. dynamic thisSelectionColor,
})

Implementation

AzText internalUseOfAz({
  thisStyle,
  thisStrutStyle,
  thisTextAlign,
  thisTextDirection,
  thisLocale,
  thisSoftWrap,
  thisOverflow,
  thisTextScaler,
  thisMaxLines,
  thisSemanticsLabel,
  thisTextWidthBasis,
  thisTextHeightBehavior,
  thisSelectionColor,
}){
  if(thisStyle != null){
    style = thisStyle;
  }
  strutStyle = thisStrutStyle;
  _textAlign = thisTextAlign;
  _textDirection = thisTextDirection;
  _locale = thisLocale;
  _softWrap = thisSoftWrap;
  _overflow = thisOverflow;
  _textScaler = thisTextScaler;
  _maxLines = thisMaxLines;
  _semanticsLabel = thisSemanticsLabel;
  _textWidthBasis = thisTextWidthBasis;
  _textHeightBehavior = thisTextHeightBehavior;
  _selectionColor = thisSelectionColor;
  return this;
}