RepositoryError constructor

RepositoryError({
  1. String? errorMessage,
  2. int? httpStatusCode,
  3. String? type,
})

Implementation

RepositoryError({
  this.errorMessage,
  this.httpStatusCode,
  this.type,
});