is_digit static method

bool is_digit(
  1. String c
)

Implementation

static bool is_digit(String c) {
  return '0123456789'.contains(c);
}