radialGradient method

TextFieldStyler radialGradient({
  1. required List<Color> colors,
  2. List<double>? stops,
  3. AlignmentGeometry? center,
  4. double? radius,
  5. AlignmentGeometry? focal,
  6. double? focalRadius,
  7. 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,
    ),
  );
}