UpLoadingCard constructor

const UpLoadingCard({
  1. Key? key,
  2. required String text,
  3. ShapeBorder? shape,
  4. Color? color,
  5. EdgeInsetsGeometry? margin,
  6. Color? shadowColor,
  7. Color? surfaceTintcolor,
  8. bool borderOnForeground = true,
  9. double? cardWidth,
  10. double? cardheight,
})

Implementation

const UpLoadingCard({
  Key? key,
  required this.text,
  this.shape,
  this.color,
  this.margin,
  this.shadowColor,
  this.surfaceTintcolor,
  this.borderOnForeground = true,
  this.cardWidth,
  this.cardheight,
}) : super(key: key);