TextKit constructor
const
TextKit({
- Key? key,
- required String title,
- required double size,
- required Color color,
- required FontWeight weight,
- TextAlign? align,
- double? height,
- double? letterSpacing,
- int? maxLines,
- TextOverflow? overflow,
Creates a TextKit widget.
All parameters except title are required when using the default
Implementation
const TextKit({
super.key,
required this.title,
required this.size,
required this.color,
required this.weight,
this.align,
this.height,
this.letterSpacing,
this.maxLines,
this.overflow,
});