RoundedCard constructor

const RoundedCard({
  1. Key? key,
  2. BoxBorder? border,
  3. EdgeInsetsGeometry? margin,
  4. EdgeInsetsGeometry? padding,
  5. Widget? child,
  6. Color? color,
})

Implementation

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