simplePresentIndicative property
Implementation
List<String> get simplePresentIndicative =>
_indicativeConjugations['indicatif_présent']!.conjugation;
set
simplePresentIndicative
(List<String> indicative)
Implementation
set simplePresentIndicative(List<String> indicative) {
assert(indicative.isNotEmpty, 'indicative cannot be empty');
assert(indicative.length == 6, 'indicative should contain six elements');
Conjugation conjugation = Conjugation('indicatif', 'présent', indicative);
_indicativeConjugations['présent'] = conjugation;
notifyListeners();
}