MyBaseCard constructor
const
MyBaseCard({
- Key? key,
- required Widget child,
- String? title,
- EdgeInsets margin = const EdgeInsets.all(8),
- EdgeInsets? padding = const EdgeInsets.all(16),
- double? width,
- String? subTitle,
- bool showBullet = false,
- Color? bulletColor,
- 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,
});