labelSmall method

dynamic labelSmall({
  1. Color? color,
})

Implementation

labelSmall({Color? color}) {
  return TextStyle(
    fontFamily: "Montserrat",
    fontWeight: FontWeight.w400,
    fontSize: 11.0,
    color: color ?? JuiColors.primaryColor,
  );
}