ReleaseAsset constructor

ReleaseAsset(
  1. {int? id,
  2. String? name,
  3. String? label,
  4. String? state,
  5. String? contentType,
  6. int? size,
  7. int? downloadCount,
  8. String? browserDownloadUrl,
  9. DateTime? createdAt,
  10. DateTime? updatedAt}
)

Implementation

ReleaseAsset({
  this.id,
  this.name,
  this.label,
  this.state,
  this.contentType,
  this.size,
  this.downloadCount,
  this.browserDownloadUrl,
  this.createdAt,
  this.updatedAt,
});