Product constructor

Product({
  1. required String name,
  2. required String type,
  3. required String slug,
  4. required DateTime createdOn,
  5. required String price,
})

Returns a new Product instance.

Implementation

Product({
  required this.name,
  required this.type,
  required this.slug,
  required this.createdOn,
  required this.price,
});