Release constructor

Release({
  1. String? message,
  2. String? name,
  3. String? releaseTime,
  4. ActingUser? releaseUser,
  5. String? type,
  6. Version? version,
})

Implementation

Release({
  this.message,
  this.name,
  this.releaseTime,
  this.releaseUser,
  this.type,
  this.version,
});