S360fCard constructor

const S360fCard({
  1. required Widget child,
  2. EdgeInsetsGeometry? margin,
  3. double elevation = 1.0,
  4. BorderSide? borderSide,
  5. EdgeInsetsGeometry? padding,
  6. BoxConstraints? constraints,
  7. double? cardBorderRadius,
  8. Color? cardColor = Colors.white,
  9. Key? key,
})

Implementation

const S360fCard({
  required this.child,
  this.margin,
  this.elevation = 1.0,
  this.borderSide,
  this.padding,
  this.constraints,
  this.cardBorderRadius,
  this.cardColor = Colors.white,
  super.key,
});