ValidationException constructor

ValidationException({
  1. bool silent = false,
  2. List<String> messages = const [],
  3. DioException? exception,
})

Creates a new instance of ValidationException.

Implementation

ValidationException({
  super.silent,
  super.messages,
  super.exception,
});