ValidatorLengthRange constructor
ValidatorLengthRange 长度范围验证器
Implementation
ValidatorLengthRange({required this.min, required this.max, required String label})
: super(
label + 'lengthRule'.tr(namedArgs: {'min': min.toString(), 'max': max.toString()}),
);