second property
List
get
second
Implementation
List get second => _second;
set
second
(List value)
Implementation
set second(List value) {
_second.clear();
_second.addAll(value);
}