PronounField constructor

const PronounField({
  1. Key? key,
  2. required String targetLanguage,
  3. required String fullPronoun,
  4. required String expectedIndicative,
})

Implementation

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