copyWith method

Implementation

ValidationFailureResponse copyWith(
    {List<ValidationFailureViewModel>? errors}) {
  return ValidationFailureResponse(errors: errors ?? this.errors);
}