ErrorDetail constructor

ErrorDetail({
  1. ErrorCode? errorCode,
  2. String? errorMessage,
  3. List<String>? resourceIds,
})

Implementation

ErrorDetail({
  this.errorCode,
  this.errorMessage,
  this.resourceIds,
});