GradientCard constructor

const GradientCard({
  1. Key? key,
  2. EdgeInsets margin = const EdgeInsets.symmetric(vertical: 6.0),
  3. Color? color,
  4. required Widget child,
})

Implementation

const GradientCard({
  super.key,
  this.margin = const EdgeInsets.symmetric(vertical: 6.0),
  this.color,
  required this.child,
});