Input$CreatePullRequestInput constructor

Input$CreatePullRequestInput({
  1. required String baseRefName,
  2. String? body,
  3. String? clientMutationId,
  4. bool? draft,
  5. required String headRefName,
  6. bool? maintainerCanModify,
  7. required String repositoryId,
  8. required String title,
})

Implementation

Input$CreatePullRequestInput(
    {required this.baseRefName,
    this.body,
    this.clientMutationId,
    this.draft,
    required this.headRefName,
    this.maintainerCanModify,
    required this.repositoryId,
    required this.title});