copyWith method
Input$RemoveReactionInput
copyWith({
- String? clientMutationId()?,
- Enum$ReactionContent? content,
- String? subjectId,
Implementation
Input$RemoveReactionInput copyWith(
{String? Function()? clientMutationId,
Enum$ReactionContent? content,
String? subjectId}) =>
Input$RemoveReactionInput(
clientMutationId: clientMutationId == null
? this.clientMutationId
: clientMutationId(),
content: content == null ? this.content : content,
subjectId: subjectId == null ? this.subjectId : subjectId);