SuffixResult constructor

SuffixResult(
  1. String firstPerson,
  2. String secondPerson
)

Give the first and second person strings.

socials.addSuffix(
  <String>['name', 'n'], (Player p) => SuffixResult('you', p.name));

Implementation

SuffixResult(this.firstPerson, this.secondPerson);