SourceChatlistController constructor

SourceChatlistController({
  1. required ARMOYUServices service,
  2. List<Chat>? cachedChatList,
  3. dynamic onChatUpdated(
    1. List<Chat> updatedChat
    )?,
})

Implementation

SourceChatlistController({
  required this.service,
  this.cachedChatList,
  this.onChatUpdated,
});