ReducingChatClient constructor
ReducingChatClient(
- ChatClient innerClient, {
- required ChatReducer reducer,
Creates a new ReducingChatClient.
innerClient is the underlying client to delegate to.
reducer is the ChatReducer used to reduce messages.
Implementation
ReducingChatClient(
super.innerClient, {
required this.reducer,
});