TextKit.titleLarge constructor
TextKit.titleLarge(})
Creates a Title Large text style (22sp, SemiBold).
Implementation
factory TextKit.titleLarge(
String title, {
Key? key,
Color? color,
TextAlign? align,
int? maxLines,
TextOverflow? overflow,
}) {
return TextKit(
key: key,
title: title,
size: 22,
color: color ?? Colors.black,
weight: FontWeight.w600,
align: align,
maxLines: maxLines,
overflow: overflow,
);
}