ClayTextTheme constructor

const ClayTextTheme({
  1. required TextStyle style,
  2. Color color = const Color(0xFFf0f0f0),
  3. int depth = 40,
  4. double size = 14,
  5. Color? parentColor,
  6. Color? textColor,
  7. double? spread,
  8. bool emboss = false,
})

Implementation

const ClayTextTheme({
  required this.style,
  this.color = const Color(0xFFf0f0f0),
  this.depth = 40,
  this.size = 14,
  this.parentColor,
  this.textColor,
  this.spread,
  this.emboss = false,
});