SmartCard constructor

const SmartCard({
  1. required Widget child,
  2. Key? key,
  3. SmartInsets? padding,
  4. double? width,
  5. double? height,
  6. SmartShadow? shadow,
})

Implementation

const SmartCard({
  required this.child,
  super.key,
  this.padding,
  this.width,
  this.height,
  this.shadow,
});