copyWith method

Query$GetLastCommits$repository copyWith({
  1. String? nameWithOwner,
  2. Query$GetLastCommits$repository$object? object()?,
  3. String? $__typename,
})

Implementation

Query$GetLastCommits$repository copyWith(
        {String? nameWithOwner,
        Query$GetLastCommits$repository$object? Function()? object,
        String? $__typename}) =>
    Query$GetLastCommits$repository(
        nameWithOwner:
            nameWithOwner == null ? this.nameWithOwner : nameWithOwner,
        object: object == null ? this.object : object(),
        $__typename: $__typename == null ? this.$__typename : $__typename);