orContains method

bool orContains(
  1. V other
)

Implementation

bool orContains(V other) {
  if (this == null) return false;
  return this!.contains(other);
}