ValidationError constructor

ValidationError({
  1. String key = '',
  2. String message = '',
  3. String code = '',
})

Implementation

ValidationError({
  this.key = '',
  this.message = '',
  this.code = '',
});