XfdnBaseCard constructor

const XfdnBaseCard({
  1. Key? key,
  2. required Widget child,
  3. String? title,
  4. EdgeInsets? padding = const EdgeInsets.all(16),
  5. double? width,
  6. String? subTitle,
  7. bool showBullet = false,
  8. Color? bulletColor,
  9. Color? backgroundColor,
})

Implementation

const XfdnBaseCard({
  super.key,
  required this.child,
  this.title,
  this.padding = const EdgeInsets.all(16),
  this.width,
  this.subTitle,
  this.showBullet = false,
  this.bulletColor,
  this.backgroundColor,
});