Returns true if this number is divisible by the provided divisor.
true
divisor
Example: 123.isDivisibleBy(10) -> false.
123.isDivisibleBy(10)
false
bool isDivisibleBy(int divisor) => toInt() % divisor == 0;