Release constructor

Release({
  1. double? fraction,
  2. String? fractionGroup,
  3. String? name,
  4. Interval? serving,
  5. String? version,
})

Implementation

Release({
  this.fraction,
  this.fractionGroup,
  this.name,
  this.serving,
  this.version,
});