accountNumber static method

Validator accountNumber()

Implementation

static Validator accountNumber() {
  return (String? value) {
    return (value!.length != 10) ? "Invalid account number." : null;
  };
}