add method

dynamic add(
  1. String? value
)

Implementation

add(String? value) {
  if (!list!.contains(value)) {
    list!.add(value);
  }
}