WiredCard constructor

const WiredCard({
  1. Key? key,
  2. Widget? child,
  3. bool fill = false,
  4. double? height = 130.0,
})

Implementation

const WiredCard({
  Key? key,
  this.child,
  this.fill = false,
  this.height = 130.0,
}) : super(key: key);