LetterValueDto constructor

LetterValueDto({
  1. String? letter,
  2. String? index,
  3. double? coefficient,
  4. double? value,
})

Returns a new LetterValueDto instance.

Implementation

LetterValueDto({
  this.letter,
  this.index,
  this.coefficient,
  this.value,
});