ValidationError constructor

ValidationError({
  1. String? code,
  2. String? message,
})

Implementation

ValidationError({
  this.code,
  this.message,
});