BigCard constructor

BigCard({
  1. Color? backgroundColor,
  2. Color? settingColor,
  3. double? cardRadius = 30,
  4. Color? backgroundMotifColor = Colors.white,
  5. Widget? cardActionWidget,
})

Implementation

BigCard({
  this.backgroundColor,
  this.settingColor,
  this.cardRadius = 30,
  this.backgroundMotifColor = Colors.white,
  this.cardActionWidget,
});