CreateVideoAvatarData constructor

CreateVideoAvatarData({
  1. String? id,
  2. String? name,
  3. List<Slide>? slides,
  4. List<String>? tags,
  5. String? url,
  6. String? sourceId,
  7. bool? deleted,
  8. String? status,
  9. bool? verified,
  10. bool? public,
  11. String? userId,
  12. String? accountId,
  13. DateTime? createdAt,
  14. DateTime? updatedAt,
})

This is constructor of CreateVideoAvatarData id that contain String value of Avatar video ID name is contain String value video name url , sourceId, status, userId, accountId is contain String Values deleted , verified, public is contain bool Values slides is contains a list of items tags is contains a list of items createdAt , updatedAt is contain DateTime Values

Implementation

CreateVideoAvatarData({
  this.id,
  this.name,
  this.slides,
  this.tags,
  this.url,
  this.sourceId,
  this.deleted,
  this.status,
  this.verified,
  this.public,
  this.userId,
  this.accountId,
  this.createdAt,
  this.updatedAt,
});