TipText constructor

TipText(
  1. TipMessage? _tip, {
  2. TextAlign? align,
  3. TextStyle? style,
  4. bool? mono,
  5. double? fontSize,
  6. Color? color,
  7. FontWeight? weight,
  8. int? maxLines,
  9. bool? softWrap,
  10. TextOverflow? overflow = TextOverflow.clip,
  11. 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;