indicative property

List<String> get indicative

Implementation

List<String> get indicative => _indicative;
set indicative (List<String> indicative)

Implementation

set indicative(List<String> indicative) {
  assert(indicative.isNotEmpty, 'indicative cannot be empty');
  assert(indicative.length == 6, 'indicative should contain six elements');
  _indicative = indicative;
  notifyListeners();
}