ResourceError constructor

ResourceError({
  1. FleetErrorCode? errorCode,
  2. String? errorMessage,
  3. DateTime? errorTimestamp,
})

Implementation

ResourceError({
  this.errorCode,
  this.errorMessage,
  this.errorTimestamp,
});