radialGradient method
TextFieldStyler
radialGradient({
- required List<
Color> colors, - List<
double> ? stops, - AlignmentGeometry? center,
- double? radius,
- AlignmentGeometry? focal,
- double? focalRadius,
- TileMode? tileMode,
Implementation
TextFieldStyler radialGradient({
required List<Color> colors,
List<double>? stops,
AlignmentGeometry? center,
double? radius,
AlignmentGeometry? focal,
double? focalRadius,
TileMode? tileMode,
}) {
return container(
BoxStyler().radialGradient(
colors: colors,
stops: stops,
center: center,
radius: radius,
focal: focal,
focalRadius: focalRadius,
tileMode: tileMode,
),
);
}