UserError constructor

UserError({
  1. ErrorCode? errorCode,
  2. String? errorMessage,
  3. String? userId,
})

Implementation

UserError({
  this.errorCode,
  this.errorMessage,
  this.userId,
});