isBank function

bool isBank(
  1. String value
)

Implementation

bool isBank(String value) {
  return _regex(r'^[1-9]\\d{9,29}$', value);
}