ContentStyle constructor

const ContentStyle({
  1. FontWeight? fontWeight,
  2. TextAlign? textAlign,
  3. Color textColor = Colors.black,
  4. double textSize = 14,
})

Implementation

const ContentStyle({
  this.fontWeight,
  this.textAlign,
  this.textColor = Colors.black,
  this.textSize = 14,
});