copyWith method
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);