StoreDTO constructor

StoreDTO({
  1. String? id,
  2. String? createdAt,
  3. String? updatedAt,
  4. bool? isActive,
  5. bool? isDeleted,
  6. StoreType? type,
  7. StoreInfoDTO? info,
  8. List<StoreDTO>? children,
  9. SettingDTO? setting,
  10. bool? highlighted,
  11. double? totalRatingCount,
  12. double? averageRating,
})

Implementation

StoreDTO({
  super.id,
  super.createdAt,
  super.updatedAt,
  super.isActive,
  super.isDeleted,
  this.type,
  this.info,
  this.children,
  this.setting,
  this.highlighted,
  this.totalRatingCount,
  this.averageRating,
});