ProductImages constructor

ProductImages({
  1. required String id,
  2. required String path,
  3. required String? size,
  4. required String createdAt,
  5. required String updatedAt,
  6. required String url,
})

Implementation

ProductImages({
  required this.id,
  required this.path,
  required this.size,
  required this.createdAt,
  required this.updatedAt,
  required this.url,
});