ToolLifecycleEventDto constructor

ToolLifecycleEventDto({
  1. required String type,
  2. required String reason,
  3. required ToolDto tool,
  4. required DateTime occurredAt,
})

Implementation

ToolLifecycleEventDto({
  required this.type,
  required this.reason,
  required this.tool,
  required this.occurredAt,
});