Release constructor

Release({
  1. String? createTime,
  2. String? name,
  3. String? rulesetName,
  4. String? updateTime,
})

Implementation

Release({
  this.createTime,
  this.name,
  this.rulesetName,
  this.updateTime,
});