GradientBorder constructor

GradientBorder({
  1. required Gradient gradient,
  2. required Widget child,
  3. double strokeWidth = 1,
  4. double? borderRadius,
  5. double padding = 0,
  6. dynamic splashColor,
  7. Key? key,
})

Implementation

GradientBorder({
  required this.gradient,
  required this.child,
  this.strokeWidth = 1,
  this.borderRadius,
  this.padding = 0,
  splashColor,
  super.key,
});