TextKit.labelSmall constructor
TextKit.labelSmall(})
Creates a Label Small text style (11sp, Regular).
Implementation
factory TextKit.labelSmall(
String title, {
Key? key,
Color? color,
TextAlign? align,
int? maxLines,
TextOverflow? overflow,
}) {
return TextKit(
key: key,
title: title,
size: 11,
color: color ?? Colors.black54,
weight: FontWeight.w400,
align: align,
maxLines: maxLines,
overflow: overflow,
);
}