TrackCollectionsEventArgs constructor

TrackCollectionsEventArgs({
  1. required String cartId,
  2. required String collectionId,
  3. required String name,
  4. String? imageUrl,
  5. String? handle,
  6. String? pageUrl,
})

Implementation

TrackCollectionsEventArgs({
  required this.cartId,
  required this.collectionId,
  required this.name,
  this.imageUrl,
  this.handle,
  this.pageUrl,
});