WishGridView constructor

const WishGridView({
  1. Key? key,
  2. required List<String> imageUrls,
  3. required double maxWidth,
  4. required Color bgColor,
  5. required Color fgColor,
  6. required double borderRadius,
  7. bool distinct = false,
  8. void onTap(
    1. String,
    2. int
    )?,
})

Implementation

const WishGridView({
  super.key,
  required this.imageUrls,
  required this.maxWidth,
  required this.bgColor,
  required this.fgColor,
  required this.borderRadius,
  this.distinct = false,
  this.onTap,
});