ThemedH1 constructor

ThemedH1(
  1. dynamic text, {
  2. dynamic type,
  3. dynamic emphasis,
  4. dynamic key,
  5. dynamic strutStyle,
  6. dynamic textAlign,
  7. dynamic textDirection,
  8. dynamic locale,
  9. dynamic softWrap,
  10. dynamic overflow,
  11. dynamic textScaleFactor,
  12. dynamic maxLines,
  13. dynamic semanticsLabel,
  14. dynamic textWidthBasis,
  15. dynamic textHeightBehavior,
})

Implementation

ThemedH1(text, {type, emphasis, key, strutStyle, textAlign, textDirection, locale, softWrap, overflow, textScaleFactor, maxLines, semanticsLabel, textWidthBasis, textHeightBehavior})
    : super(
    text,
    type: type,
    emphasis: emphasis,
    key: key,
    strutStyle: strutStyle,
    textAlign: textAlign,
    textDirection: textDirection,
    locale: locale,
    softWrap: softWrap,
    overflow: overflow,
    textScaleFactor: textScaleFactor,
    maxLines: maxLines,
    semanticsLabel: semanticsLabel,
    textWidthBasis: textWidthBasis,
    textHeightBehavior:textHeightBehavior
);