ViewError constructor

ViewError({
  1. ViewErrorType errorType = ViewErrorType.none,
  2. String logMsg = '',
  3. String message = '',
  4. Exception? cause,
})

Implementation

ViewError({
  this.errorType = ViewErrorType.none,
  this.logMsg = '',
  this.message = '',
  this.cause,
});