check if list contains value without considering case
bool containWithoutCase(String value) { return any((element) => element.toLowerCase() == value.toLowerCase()); }