copyWith method

SendConversationRequest copyWith({
  1. String? token,
  2. String? message,
  3. String? message_type,
})

Implementation

SendConversationRequest copyWith({
  String? token,
  String? message,
  String? message_type,
}) {
  return SendConversationRequest(
    token: token ?? this.token,
    message: message ?? this.message,
    message_type: message_type ?? this.message_type,
  );
}