CreatePullRequest constructor

CreatePullRequest(
  1. String? title,
  2. String? head,
  3. String? base, {
  4. bool? draft = false,
  5. String? body,
})

Implementation

CreatePullRequest(
  this.title,
  this.head,
  this.base, {
  this.draft = false,
  this.body,
});