MinervaCard constructor Null safety

const MinervaCard(
  1. {Key? key,
  2. EdgeInsets padding = const EdgeInsets.symmetric(vertical: 10.0, horizontal: 50.0),
  3. Widget? child}
)

Implementation

const MinervaCard({
  Key? key,
  this.padding = const EdgeInsets.symmetric(vertical: 10.0, horizontal: 50.0),
  this.child,
}) : super(key: key);