JsonTextBuilderModel constructor

const JsonTextBuilderModel(
  1. Map<String, dynamic> args, {
  2. required dynamic data,
  3. Locale? locale,
  4. int? maxLines,
  5. TextOverflow? overflow,
  6. Color? selectionColor,
  7. String? semanticsLabel,
  8. bool? softWrap,
  9. StrutStyle? strutStyle,
  10. TextStyle? style,
  11. TextAlign? textAlign,
  12. TextDirection? textDirection,
  13. TextHeightBehavior? textHeightBehavior,
  14. double? textScaleFactor,
  15. TextScaler? textScaler,
  16. TextWidthBasis? textWidthBasis,
})

Implementation

const JsonTextBuilderModel(
  super.args, {
  required this.data,
  this.locale,
  this.maxLines,
  this.overflow,
  this.selectionColor,
  this.semanticsLabel,
  this.softWrap,
  this.strutStyle,
  this.style,
  this.textAlign,
  this.textDirection,
  this.textHeightBehavior,
  this.textScaleFactor,
  this.textScaler,
  this.textWidthBasis,
});