MTextStyle constructor

const MTextStyle({
  1. double? size,
  2. MColor? color,
  3. double? opacity,
  4. bool? bold,
  5. MFontWeight? weight,
  6. bool? italic,
  7. MTextRole? role,
  8. MTextStyle? baseStyle,
})

Implementation

const MTextStyle({
  this.size,
  this.color,
  this.opacity,
  this.bold,
  this.weight,
  this.italic,
  this.role,
  this.baseStyle,
});