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