whiteBold static method

TextStyle whiteBold({
  1. int size = 16,
})

Implementation

static TextStyle whiteBold({int size = 16}) => TextStyle(
      color: Colors.white,
      fontSize: size.toFont,
      letterSpacing: 0.1,
      fontWeight: FontWeight.w700,
    );