StyleEntity constructor

const StyleEntity({
  1. FontWeight? fontWeight,
  2. double? fontSize,
  3. Color? fontColor,
  4. Color? backgroundColor,
  5. Alignment? horizontalAlignment,
  6. CrossAxisAlignment? verticalAlignment,
  7. TextAlign? textAlign,
})

Implementation

const StyleEntity({
  this.fontWeight,
  this.fontSize,
  this.fontColor,
  this.backgroundColor,
  this.horizontalAlignment,
  this.verticalAlignment,
  this.textAlign,
});