copyWith method

Variables$Query$GetLastCommits copyWith({
  1. String? owner,
  2. String? name,
  3. String? branch,
  4. String? since,
})

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