AvatarData constructor

AvatarData({
  1. String? avatarDataId,
  2. int? status,
  3. String? type,
  4. int? version,
  5. int? order,
  6. String? accountId,
  7. FrontendConfig? frontendConfig,
  8. AvatarConfig? avatarConfig,
  9. List? variants,
  10. String? id,
  11. DateTime? createdAt,
  12. DateTime? updatedAt,
  13. int? v,
})

this is constructor of AvatarData class

Implementation

AvatarData({
  this.avatarDataId,
  this.status,
  this.type,
  this.version,
  this.order,
  this.accountId,
  this.frontendConfig,
  this.avatarConfig,
  this.variants,
  this.id,
  this.createdAt,
  this.updatedAt,
  this.v,
});