GradientCard constructor

const GradientCard({
  1. Key? key,
  2. LinearGradient gradient = Gradients.hotLinear,
  3. ShapeBorder? shape,
  4. EdgeInsetsGeometry margin = const EdgeInsets.all(4),
  5. Clip clipBehavior = Clip.none,
  6. Widget? child,
  7. double? elevation,
  8. Color? shadowColor,
  9. bool semanticContainer = true,
})

Implementation

const GradientCard({
  Key? key,
  this.gradient = Gradients.hotLinear,
  this.shape,
  this.margin = const EdgeInsets.all(4),
  this.clipBehavior = Clip.none,
  this.child,
  this.elevation,
  this.shadowColor,
  this.semanticContainer = true,
}) : super(key: key);