OutlinedCard constructor
const
OutlinedCard({
- Key? key,
- required Widget child,
- double? width,
- EdgeInsetsGeometry padding = const EdgeInsets.all(20),
- EdgeInsetsGeometry margin = const EdgeInsets.only(top: 24, bottom: 28),
- Color? borderColor,
- double borderWidth = 2,
Implementation
const OutlinedCard({
super.key,
required this.child,
this.width,
this.padding = const EdgeInsets.all(20),
this.margin = const EdgeInsets.only(top: 24, bottom: 28),
this.borderColor,
this.borderWidth = 2,
});