EvaluationRow constructor

const EvaluationRow(
  1. int person,
  2. String language,
  3. String fullPronoun,
  4. String actual,
  5. String expected, {
  6. Key? key,
})

Implementation

const EvaluationRow(
    this.person, this.language, this.fullPronoun, this.actual, this.expected,
    {Key? key})
    : super(key: key);