copyWith method
Implementation
Input$CreateTeamDiscussionInput copyWith(
{String? body,
String? Function()? clientMutationId,
bool? Function()? private,
String? teamId,
String? title}) =>
Input$CreateTeamDiscussionInput(
body: body == null ? this.body : body,
clientMutationId: clientMutationId == null
? this.clientMutationId
: clientMutationId(),
private: private == null ? this.private : private(),
teamId: teamId == null ? this.teamId : teamId,
title: title == null ? this.title : title);