Check if the number ends with suffix. Returns true if the number ends with suffix, false otherwise.
suffix
true
false
bool endsWith(num suffix) => toString().endsWith(suffix.toString());