Application(- {required String id,
- required String appName,
- required bool archived,
- required List<String> branches,
- String? iconUrl,
- String? lastBuildId,
- String? ownerTeam,
- List<String>? projectFiles,
- Repository? repository,
- List<UserRights>? userRights,
- required List<String> workflowIds,
- required Map<String, Workflow> workflows}
)
Implementation
Application({
required this.id,
required this.appName,
required this.archived,
required this.branches,
this.iconUrl,
this.lastBuildId,
this.ownerTeam,
this.projectFiles,
this.repository,
this.userRights,
required this.workflowIds,
required this.workflows,
});