Checks if this integer is divisible by divisor.
divisor
bool isDivisibleBy(int divisor) => this % divisor == 0;