copyWith method
Implementation
Variables$Query$GetLastCommits copyWith(
{String? owner, String? name, String? branch, String? since}) =>
Variables$Query$GetLastCommits(
owner: owner == null ? this.owner : owner,
name: name == null ? this.name : name,
branch: branch == null ? this.branch : branch,
since: since == null ? this.since : since);