Operation constructor

Operation({
  1. DateTime? createdAt,
  2. String? errorCode,
  3. String? errorDetails,
  4. String? id,
  5. bool? isTerminal,
  6. ResourceLocation? location,
  7. String? operationDetails,
  8. OperationType? operationType,
  9. String? resourceName,
  10. ResourceType? resourceType,
  11. OperationStatus? status,
  12. DateTime? statusChangedAt,
})

Implementation

Operation({
  this.createdAt,
  this.errorCode,
  this.errorDetails,
  this.id,
  this.isTerminal,
  this.location,
  this.operationDetails,
  this.operationType,
  this.resourceName,
  this.resourceType,
  this.status,
  this.statusChangedAt,
});