copyWith method

ConversationConfigOverride copyWith({
  1. dynamic textOnly,
})

Implementation

ConversationConfigOverride copyWith({dynamic textOnly}) {
  return ConversationConfigOverride(textOnly: textOnly ?? this.textOnly);
}