internalUseOfAz method
AzText
internalUseOfAz({
- dynamic thisStyle,
- dynamic thisStrutStyle,
- dynamic thisTextAlign,
- dynamic thisTextDirection,
- dynamic thisLocale,
- dynamic thisSoftWrap,
- dynamic thisOverflow,
- dynamic thisTextScaler,
- dynamic thisMaxLines,
- dynamic thisSemanticsLabel,
- dynamic thisTextWidthBasis,
- dynamic thisTextHeightBehavior,
- 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;
}