BasicCard constructor

const BasicCard({
  1. Key? key,
  2. Color? color,
  3. Widget? child,
  4. EdgeInsetsGeometry? padding,
  5. EdgeInsetsGeometry? margin,
  6. dynamic onTap()?,
  7. double? borderRadius,
  8. double? borderWidth,
  9. double? elevation,
})

Implementation

const BasicCard({
  Key? key,
  this.color,
  this.child,
  this.padding,
  this.margin,
  this.onTap,
  this.borderRadius,
  this.borderWidth,
  this.elevation,
}) : super(key: key);