ValidationFailureViewModel constructor

ValidationFailureViewModel({
  1. String? propertyName,
  2. String? errorMessage,
  3. String? errorCode,
})

Implementation

ValidationFailureViewModel({
  this.propertyName,
  this.errorMessage,
  this.errorCode,
});