isAnyOf method

bool isAnyOf(
  1. List<String> items
)

Implementation

bool isAnyOf(List<String> items) {
  return items.contains(this);
}