StyleCard constructor

const StyleCard({
  1. Key? key,
  2. void onPressed()?,
  3. bool inverted = false,
  4. required Widget child,
})

Implementation

const StyleCard({
  super.key,
  this.onPressed,
  this.inverted = false,
  required this.child,
});