ExpectedRow constructor

const ExpectedRow({
  1. Key? key,
  2. required int currentPerson,
  3. required String fullPronoun,
  4. required String expectedIndicative,
  5. required String targetLanguage,
})

Implementation

const ExpectedRow(
    {Key? key,
    required this.currentPerson,
    required this.fullPronoun,
    required this.expectedIndicative,
    required this.targetLanguage})
    : super(key: key);