add method
Implementation
bool add(E value) {
final list = this.value;
final result = list.add(value);
set(list, force: true);
return result;
}
bool add(E value) {
final list = this.value;
final result = list.add(value);
set(list, force: true);
return result;
}