LetterValue constructor

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

Implementation

LetterValue({
		String? letter,
		String? index,
		double? coefficient,
		double? value
	}) : letter = letter ?? null,
	index = index ?? null,
	coefficient = coefficient ?? null,
	value = value ?? null;