cta static method

TextStyle cta({
  1. Color? color,
})

Fonte CTA Font family: Inter Font size: 18 Font weight: 700 Height: 160%

Implementation

static TextStyle cta({Color? color}) {
  return TextStyle(
    color: color,
    fontFamily: 'Inter',
    fontSize: 18.0,
    fontWeight: FontWeight.w700,
    height: 1.6,
    package: package,
  );
}