ZeroCard constructor

const ZeroCard({
  1. Key? key,
  2. ZeroCardStyle? style,
  3. required Widget child,
  4. Clip clipBehavior = Clip.antiAlias,
})

Implementation

const ZeroCard({
  super.key,
  ZeroCardStyle? style,
  required this.child,
  this.clipBehavior = Clip.antiAlias,
}) : style = style ?? const ZeroCardStyle();