copyWith method

ConversationConfigOverrideConfig copyWith({
  1. bool? textOnly,
})

Implementation

ConversationConfigOverrideConfig copyWith({bool? textOnly}) {
  return ConversationConfigOverrideConfig(
      textOnly: textOnly ?? this.textOnly);
}