button static method

TextStyle button({
  1. Color? color,
  2. FontWeight? fontWeight,
})

Implementation

static TextStyle button({Color? color, FontWeight? fontWeight}) {
  return TextStyle(
    fontSize: 14.sp,
    fontWeight: fontWeight ?? FontWeight.w600,
    color: color,
    height: 1.2,
    letterSpacing: 0.5.sp,
  );
}