MeshGradientBackground constructor

const MeshGradientBackground({
  1. Key? key,
  2. Widget? child,
  3. List<Color>? colors,
  4. Duration duration = const Duration(seconds: 8),
  5. bool animate = true,
  6. double? borderRadius,
  7. int meshPoints = 4,
})

Implementation

const MeshGradientBackground({
  super.key,
  this.child,
  this.colors,
  this.duration = const Duration(seconds: 8),
  this.animate = true,
  this.borderRadius,
  this.meshPoints = 4,
});