CxImageCard constructor

const CxImageCard({
  1. Key? key,
  2. String? title,
  3. String? subtitle,
  4. List<Widget>? topRight,
  5. List<Widget>? topLeft,
  6. List<Widget>? bottomRight,
  7. List<Widget>? bottomLeft,
  8. double? cornerHeight,
  9. required String? img,
  10. bool? imgIsNet,
  11. BoxFit? imgFix,
})

Implementation

const CxImageCard({
  super.key,
  this.title,
  this.subtitle,
  this.topRight,
  this.topLeft,
  this.bottomRight,
  this.bottomLeft,
  this.cornerHeight,
  required this.img,
  this.imgIsNet,
  this.imgFix,
});