CssBackgroundImage.radialGradient constructor
CssBackgroundImage.radialGradient({
- CssRadialShape? shape,
- CssRadialSize? size,
- CssBackgroundPosition? position,
- required List<
CssGradientStop> stops, - bool repeating,
Radial gradient.
shape can be 'circle' or 'ellipse'.
size can be 'closest-side', 'farthest-corner', etc. or a length.
position is the center position (e.g. 'center', '50% 50%').
Implementation
factory CssBackgroundImage.radialGradient({
CssRadialShape? shape,
CssRadialSize? size,
CssBackgroundPosition? position,
required List<CssGradientStop> stops,
bool repeating,
}) = _CssBackgroundImageRadialGradient;