TextSpec.exhaustive constructor

const TextSpec.exhaustive({
  1. required TextOverflow? overflow,
  2. required StrutStyle? strutStyle,
  3. required TextAlign? textAlign,
  4. required double? textScaleFactor,
  5. required int? maxLines,
  6. required TextStyle? style,
  7. required TextWidthBasis? textWidthBasis,
  8. required TextHeightBehavior? textHeightBehavior,
  9. required TextDirection? textDirection,
  10. required bool? softWrap,
  11. required TextDirective? directive,
  12. required AnimatedData? animated,
})

Implementation

const TextSpec.exhaustive({
  required this.overflow,
  required this.strutStyle,
  required this.textAlign,
  required this.textScaleFactor,
  required this.maxLines,
  required this.style,
  required this.textWidthBasis,
  required this.textHeightBehavior,
  required this.textDirection,
  required this.softWrap,
  required this.directive,
  required super.animated,
});