Translated constructor

const Translated(
  1. String keyword, {
  2. Key? key,
  3. Map<String, dynamic>? map,
  4. TextStyle? style,
  5. StrutStyle? strutStyle,
  6. TextAlign? textAlign,
  7. TextDirection? textDirection,
  8. bool? softWrap,
  9. TextOverflow? overflow,
  10. double? textScaleFactor,
  11. int? maxLines,
  12. String? semanticsLabel,
  13. TextWidthBasis? textWidthBasis,
})

Implementation

const Translated(
  this.keyword, {
  Key? key,
  this.map,
  this.style,
  this.strutStyle,
  this.textAlign,
  this.textDirection,
  this.softWrap,
  this.overflow,
  this.textScaleFactor,
  this.maxLines,
  this.semanticsLabel,
  this.textWidthBasis,
}) : super(key: key);