TextKit.bodyLarge constructor
TextKit.bodyLarge(})
Creates a Body Large text style (16sp, Regular).
Implementation
factory TextKit.bodyLarge(
String title, {
Key? key,
Color? color,
TextAlign? align,
int? maxLines,
TextOverflow? overflow,
double? height,
}) {
return TextKit(
key: key,
title: title,
size: 16,
color: color ?? Colors.black87,
weight: FontWeight.w400,
align: align,
maxLines: maxLines,
overflow: overflow,
height: height ?? 1.5,
);
}