LinkStyle constructor

const LinkStyle({
  1. Color? color,
  2. Color? hoverColor,
  3. TextDecoration? decoration,
  4. double? decorationThickness,
  5. FontWeight? fontWeight,
})

Creates a LinkStyle. Null fields defer to the theme, then to the default.

Implementation

const LinkStyle({
  this.color,
  this.hoverColor,
  this.decoration,
  this.decorationThickness,
  this.fontWeight,
});