TextKit.labelLarge constructor
TextKit.labelLarge(})
Creates a Label Large text style (14sp, Medium).
Implementation
factory TextKit.labelLarge(
String title, {
Key? key,
Color? color,
TextAlign? align,
int? maxLines,
TextOverflow? overflow,
}) {
return TextKit(
key: key,
title: title,
size: 14,
color: color ?? Colors.black54,
weight: FontWeight.w500,
align: align,
maxLines: maxLines,
overflow: overflow,
);
}