idValidator method

bool idValidator(
  1. String id
)

Implementation

bool idValidator(String id) {
  return RegExp(r"^[0-9]+$").hasMatch(id);
}