TextInputStyle constructor
- String? fontFamily,
- double? fontSize,
- FontWeight? fontWeight,
- required TextDirection textDirection,
- required TextAlign textAlign,
- double? letterSpacing,
- double? wordSpacing,
- 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,
});