Checks if divisible by all dividers.
dividers
bool isDivisibleByAll(List<int> dividers) => dividers.every((divider) => this % divider == 0);