OutlinedCard constructor

const OutlinedCard({
  1. Key? key,
  2. required Widget child,
  3. double? width,
  4. EdgeInsetsGeometry padding = const EdgeInsets.all(20),
  5. EdgeInsetsGeometry margin = const EdgeInsets.only(top: 24, bottom: 28),
  6. Color? borderColor,
  7. 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,
});