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 avatarDataId that contain String value of Avatar Image ID Status is contain Integer value type ,accountId , id is contain String value version , order ,v is contain integer value FrontendConfig is contains object value AvatarConfig is contains object value createdAt, updatedAt is contains DateTime value

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,
});