simplePastIndicative property

List<String>? simplePastIndicative

Implementation

List<String>? get simplePastIndicative =>
    _indicativeConjugations['indicatif_imparfait']?.conjugation;
void simplePastIndicative=(List<String>? indicative)

Implementation

set simplePastIndicative(List<String>? indicative) {
  assert(indicative!.isNotEmpty, 'indicative cannot be empty');
  assert(indicative!.length == 6, 'indicative should contain six elements');
  Conjugation conjugation =
      Conjugation('indicatif', 'imparfait', indicative!);
  _indicativeConjugations['imparfait'] = conjugation;
  notifyListeners();
}