CollectionElement constructor

CollectionElement({
  1. int? id,
  2. dynamic code,
  3. String? name,
  4. String? description,
  5. String? bannerKey,
  6. String? baseUrl,
})

Implementation

CollectionElement({
  this.id,
  this.code,
  this.name,
  this.description,
  this.bannerKey,
  this.baseUrl,
});