small static method
Implementation
static TextStyle small({
required String family,
}) {
return TextStyle(
fontSize: 14,
decoration: TextDecoration.none,
fontStyle: FontStyle.normal,
fontWeight: FontWeight.w500,
height: 14 / 14,
letterSpacing: 0,
fontFamily: family,
textBaseline: TextBaseline.alphabetic,
leadingDistribution: TextLeadingDistribution.even,
);
}