TextInputStyle constructor

const TextInputStyle({
  1. String? fontFamily,
  2. double? fontSize,
  3. FontWeight? fontWeight,
  4. required TextDirection textDirection,
  5. required TextAlign textAlign,
  6. double? letterSpacing,
  7. double? wordSpacing,
  8. double? lineHeight,
})

Creates text styling information for the current input client.

Implementation

const TextInputStyle({
  this.fontFamily,
  this.fontSize,
  this.fontWeight,
  required this.textDirection,
  required this.textAlign,
  this.letterSpacing,
  this.wordSpacing,
  this.lineHeight,
});