octal static method
Ensures the string is an octal number.
Implementation
static String? Function(String?) octal({
String errorMessage = 'Please enter a valid octal number',
}) {
return _build(errorMessage, (v) => v.isOctal);
}
Ensures the string is an octal number.
static String? Function(String?) octal({
String errorMessage = 'Please enter a valid octal number',
}) {
return _build(errorMessage, (v) => v.isOctal);
}