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