copyWith method

Input$CommitAuthor copyWith({
  1. List<String>? emails()?,
  2. String? id()?,
})

Implementation

Input$CommitAuthor copyWith(
        {List<String>? Function()? emails, String? Function()? id}) =>
    Input$CommitAuthor(
        emails: emails == null ? this.emails : emails(),
        id: id == null ? this.id : id());