copyWith method
Implementation
Input$UpdateTeamDiscussionCommentInput copyWith(
{String? body,
String? Function()? bodyVersion,
String? Function()? clientMutationId,
String? id}) =>
Input$UpdateTeamDiscussionCommentInput(
body: body == null ? this.body : body,
bodyVersion: bodyVersion == null ? this.bodyVersion : bodyVersion(),
clientMutationId: clientMutationId == null
? this.clientMutationId
: clientMutationId(),
id: id == null ? this.id : id);