IOSNSAttributedString constructor

IOSNSAttributedString({
  1. Color? backgroundColor,
  2. double? baselineOffset,
  3. double? expansion,
  4. Color? foregroundColor,
  5. double? kern,
  6. int? ligature,
  7. double? obliqueness,
  8. Color? strikethroughColor,
  9. IOSNSUnderlineStyle? strikethroughStyle,
  10. required String string,
  11. Color? strokeColor,
  12. double? strokeWidth,
  13. IOSNSAttributedStringTextEffectStyle? textEffect,
  14. Color? underlineColor,
  15. IOSNSUnderlineStyle? underlineStyle,
})

Implementation

IOSNSAttributedString({
  this.backgroundColor,
  this.baselineOffset,
  this.expansion,
  this.foregroundColor,
  this.kern,
  this.ligature,
  this.obliqueness,
  this.strikethroughColor,
  this.strikethroughStyle,
  required this.string,
  this.strokeColor,
  this.strokeWidth,
  this.textEffect,
  this.underlineColor,
  this.underlineStyle,
});