copyWith method

Input$CreateTeamDiscussionInput copyWith({
  1. String? body,
  2. String? clientMutationId()?,
  3. bool? private()?,
  4. String? teamId,
  5. String? title,
})

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