AssetModel constructor

const AssetModel({
  1. String? website,
  2. String? wikiLink,
  3. String? id,
  4. required String $id,
  5. int? cstamp,
  6. String? cby,
  7. String? uby,
  8. int? ustamp,
  9. String? name,
  10. String? icon,
  11. String? description,
  12. List<String>? images,
})

Implementation

const AssetModel({
  this.website,
  this.wikiLink,
  this.id,
  required this.$id,
  this.cstamp,
  this.cby,
  this.uby,
  this.ustamp,
  this.name,
  this.icon,
  this.description,
  this.logo,
  this.images,
});