copyWith method

Query$GetLastCommits$repository$object$$Commit$history$nodes copyWith({
  1. String? oid,
  2. String? messageHeadline,
  3. String? messageBody,
  4. Query$GetLastCommits$repository$object$$Commit$history$nodes$author? author()?,
  5. String? committedDate,
  6. String? commitUrl,
  7. String? $__typename,
})

Implementation

Query$GetLastCommits$repository$object$$Commit$history$nodes copyWith(
        {String? oid,
        String? messageHeadline,
        String? messageBody,
        Query$GetLastCommits$repository$object$$Commit$history$nodes$author?
                Function()?
            author,
        String? committedDate,
        String? commitUrl,
        String? $__typename}) =>
    Query$GetLastCommits$repository$object$$Commit$history$nodes(
        oid: oid == null ? this.oid : oid,
        messageHeadline:
            messageHeadline == null ? this.messageHeadline : messageHeadline,
        messageBody: messageBody == null ? this.messageBody : messageBody,
        author: author == null ? this.author : author(),
        committedDate:
            committedDate == null ? this.committedDate : committedDate,
        commitUrl: commitUrl == null ? this.commitUrl : commitUrl,
        $__typename: $__typename == null ? this.$__typename : $__typename);