MyBaseCard constructor

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

Implementation

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