NeoText constructor

const NeoText(
  1. String content, {
  2. List<String>? fontFamily,
  3. List<double>? fontSize,
  4. List<FontWeight>? fontWeight,
  5. List<double>? lineHeight,
  6. List<double>? letterSpacing,
  7. List<double>? textAlign,
  8. List<FontStyle>? fontStyle,
  9. List<FontStyle>? textTransform,
  10. List<FontStyle>? textDecoration,
  11. Key? key,
})

Implementation

const NeoText(
  this.content, {
  // Typography
  this.fontFamily,
  this.fontSize,
  this.fontWeight,
  this.lineHeight,
  this.letterSpacing,
  this.textAlign,
  this.fontStyle,
  this.textTransform,
  this.textDecoration,
  // Others
  Key? key,
}) : super(key: key);