RoundedCard constructor

const RoundedCard({
  1. BoxBorder? border,
  2. EdgeInsetsGeometry? margin,
  3. EdgeInsetsGeometry? padding,
  4. Widget? child,
  5. Key? key,
  6. Color? color,
  7. double? radius,
  8. double? borderWidth,
  9. List<BoxShadow>? brightBoxShadow,
})

Implementation

const RoundedCard(
    {this.border,
    this.margin,
    this.padding,
    this.child,
    Key? key,
    this.color,
    this.radius,
    this.borderWidth,
    this.brightBoxShadow})
    : super(key: key);