setBackgroundStroke method

void setBackgroundStroke({
  1. Color? color,
  2. List<Color>? colors,
  3. double? width,
  4. bool family = true,
})

Implementation

void setBackgroundStroke(
    {Color? color, List<Color>? colors, double? width, bool family = true}) {
  return setStroke(
      color: color,
      colors: colors,
      width: width,
      family: family,
      background: true);
}