maxLength static method

ValidatorFunction maxLength(
  1. int len
)

Implementation

static ValidatorFunction maxLength(int len) =>
        (v) => AppValidator.maxLength(v, len);