Product constructor

Product(
  1. {required String name,
  2. required String price,
  3. required String icon,
  4. required String description,
  5. required BackgroundColors bgColors,
  6. int span = 1}
)

Implementation

Product(
    {required this.name,
    required this.price,
    required this.icon,
    required this.description,
    required this.bgColors,
    this.span = 1});