CatalogItem constructor

const CatalogItem({
  1. Key? key,
  2. required Item catalog,
  3. Color color = Colors.white,
  4. double sizebt = 14,
})

Implementation

const CatalogItem(
    {Key? key,
    required this.catalog,
    this.color = Colors.white,
    this.sizebt = 14})
    : super(key: key);