UpCard constructor

const UpCard({
  1. Key? key,
  2. Widget? body,
  3. Widget? header,
  4. Image? image,
  5. UpColorType? colorType,
  6. UpStyle? style,
})

Implementation

const UpCard({
  Key? key,
  this.body,
  this.header,
  this.image,
  this.colorType,
  this.style,
}) : super(key: key);