Input$CreateProjectInput constructor

Input$CreateProjectInput({
  1. String? body,
  2. String? clientMutationId,
  3. required String name,
  4. required String ownerId,
  5. List<String>? repositoryIds,
  6. Enum$ProjectTemplate? template,
})

Implementation

Input$CreateProjectInput(
    {this.body,
    this.clientMutationId,
    required this.name,
    required this.ownerId,
    this.repositoryIds,
    this.template});