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