CSSConicGradient constructor
CSSConicGradient({
- AlignmentGeometry center = Alignment.center,
- required List<
Color> colors, - List<
double> ? stops, - GradientTransform? transform,
Creates a linear gradient.
The colors argument must not be null. If stops is non-null, it must
have the same length as colors.
Implementation
CSSConicGradient(
{super.center,
required super.colors,
super.stops,
super.transform});