AsyncRefineValidator<T> constructor

AsyncRefineValidator<T>(
  1. Validator<T> _inner,
  2. Future<bool> _predicate(
    1. T value
    ),
  3. List<String>? _customPath,
  4. String _code,
  5. Map<String, dynamic>? _params, {
  6. String? message,
  7. bool isSecret = false,
})

Implementation

AsyncRefineValidator(
  this._inner,
  this._predicate,
  this._customPath,
  this._code,
  this._params, {
  this._message,
  super.isSecret = false,
});