copyWith method

CloseConversationRequest copyWith({
  1. String? conversationUid,
})

Implementation

CloseConversationRequest copyWith({
  String? conversationUid,
}) {
  return CloseConversationRequest(
    conversationUid: conversationUid ?? this.conversationUid,
  );
}