TextFormat constructor

TextFormat({
  1. bool? bold,
  2. String? fontFamily,
  3. int? fontSize,
  4. Color? foregroundColor,
  5. ColorStyle? foregroundColorStyle,
  6. bool? italic,
  7. Link? link,
  8. bool? strikethrough,
  9. bool? underline,
})

Implementation

TextFormat({
  this.bold,
  this.fontFamily,
  this.fontSize,
  this.foregroundColor,
  this.foregroundColorStyle,
  this.italic,
  this.link,
  this.strikethrough,
  this.underline,
});