ValueFailure<T>.shortPassword constructor

const ValueFailure<T>.shortPassword({
  1. T? failedValue,
  2. @Default.new(common_error_shortPassword) String code,
  3. required String field,
})

Implementation

const factory ValueFailure.shortPassword({
  T? failedValue,
  @Default(common_error_shortPassword) String code,
  required String field,
}) = _ShortPassword<T>;