BoxStyler.foregroundSweepGradient constructor
BoxStyler.foregroundSweepGradient({})
Implementation
factory BoxStyler.foregroundSweepGradient({
required List<Color> colors,
List<double>? stops,
AlignmentGeometry? center,
double? startAngle,
double? endAngle,
TileMode? tileMode,
}) => BoxStyler().foregroundSweepGradient(
colors: colors,
stops: stops,
center: center,
startAngle: startAngle,
endAngle: endAngle,
tileMode: tileMode,
);