TipText constructor
TipText(
- TipMessage? _tip, {
- TextAlign? align,
- TextStyle? style,
- bool? mono,
- double? fontSize,
- Color? color,
- FontWeight? weight,
- int? maxLines,
- bool? softWrap,
- TextOverflow? overflow = TextOverflow.clip,
- Locale? locale,
Implementation
TipText(
this._tip, {
TextAlign? align,
TextStyle? style,
bool? mono,
double? fontSize,
Color? color,
FontWeight? weight,
int? maxLines,
bool? softWrap,
TextOverflow? overflow = TextOverflow.clip,
Locale? locale,
}) : _align = align,
_style = style,
_mono = mono,
_fontSize = fontSize,
_weight = weight,
_maxLines = maxLines,
_softWrap = softWrap,
_overflow = overflow ?? TextOverflow.clip,
_locale = locale;