Workspace constructor

const Workspace({
  1. required String workspaceKey,
  2. required String path,
  3. required String branchName,
  4. required bool createdNow,
})

Creates a workspace value object.

Implementation

const Workspace({
  required this.workspaceKey,
  required this.path,
  required this.branchName,
  required this.createdNow,
});