TextKit.displayLarge constructor
TextKit.displayLarge(})
Creates a Display Large text style (57sp, Light).
Implementation
factory TextKit.displayLarge(
String title, {
Key? key,
Color? color,
TextAlign? align,
int? maxLines,
TextOverflow? overflow,
}) {
return TextKit(
key: key,
title: title,
size: 57,
color: color ?? Colors.black,
weight: FontWeight.w500,
align: align,
maxLines: maxLines,
overflow: overflow,
);
}