contain method

bool contain(
  1. ShowType other
)

Implementation

bool contain(ShowType other) {
  for (Mods m in other.typesList) {
    if (!typesList.contains(m)) {
      return false;
    }
  }
  return true;
}