BlodTextStyle constructor

const BlodTextStyle({
  1. Color? color,
  2. double? fontSize = 16,
  3. FontWeight? fontWeight = FontWeight.bold,
  4. TextDecoration? decoration = TextDecoration.none,
})

Implementation

const BlodTextStyle({
  super.color,
  super.fontSize = 16,
  super.fontWeight = FontWeight.bold,
  super.decoration = TextDecoration.none,
}) : super(
        fontFamily: 'roboto-regular',
        fontStyle: FontStyle.normal,
      );