copyWith method

ChatComponentLoaded copyWith({
  1. ChatModel? copyThis,
})

Implementation

ChatComponentLoaded copyWith({ChatModel? copyThis}) {
  return ChatComponentLoaded(value: copyThis ?? value);
}