copyWith method
Implementation
ChatSessionModeInfo copyWith({
String? currentModeId,
List<ChatSessionMode>? availableModes,
}) {
return ChatSessionModeInfo(
currentModeId: currentModeId ?? this.currentModeId,
availableModes: availableModes ?? this.availableModes,
);
}