add method
add value to history
Implementation
void add(String value) {
if (value.trim() != '' && !history.contains(value)) history.add(value);
}
add value to history
void add(String value) {
if (value.trim() != '' && !history.contains(value)) history.add(value);
}