Check if the number starts with prefix. Returns true if the number starts with prefix, false otherwise.
prefix
true
false
bool startsWith(num prefix) => toString().startsWith(prefix.toString());