TextStyleHtml constructor

TextStyleHtml(
  1. {@required Iterable deps,
  2. double height,
  3. int maxLines,
  4. TextStyleHtml parent,
  5. TextStyle style,
  6. TextAlign textAlign,
  7. TextDirection textDirection,
  8. TextOverflow textOverflow}
)

Creates a text style.

Implementation

TextStyleHtml({
  @required Iterable deps,
  this.height,
  this.maxLines,
  this.parent,
  this.style,
  this.textAlign,
  this.textDirection,
  this.textOverflow,
}) : _deps = deps;