TextStyle constructor

const TextStyle({
  1. StyleColor? color,
  2. StyleColor? backgroundColor,
  3. FontStyle? fontStyle,
  4. FontWeight? fontWeight,
  5. StyleColor? borderColor,
  6. String? borderRadius,
  7. String? padding,
})

Implementation

const TextStyle(
    {this.color,
    this.backgroundColor,
    this.fontStyle,
    this.fontWeight,
    this.borderColor,
    this.borderRadius,
    this.padding});