InlineTextStyle constructor

InlineTextStyle({
  1. Color? color,
  2. String? fontFamily,
  3. double? fontSize,
  4. double? fontScale,
  5. FontWeight? fontWeight,
  6. FontStyle? fontStyle,
  7. double? letterSpacing,
})

Implementation

InlineTextStyle({
  this.color,
  this.fontFamily,
  this.fontSize,
  this.fontScale,
  this.fontWeight,
  this.fontStyle,
  this.letterSpacing,
});