containsOr method
Implementation
bool containsOr(List<String> input, {bool ignoreCase = true}) {
return isNotNullOrEmpty
? ignoreCase
? input
.where((element) => toNotNull.toLowerCase().contains(element.toNotNull.toLowerCase()))
.toList()
.isNotNullOrEmpty
: input
.where((element) => toNotNull.contains(element))
.toList()
.isNotNullOrEmpty
: false;
}