ConversationService constructor

ConversationService()

Implementation

factory ConversationService() {
  if (_singleton == null) {
    _singleton = ConversationService._();
  }
  return _singleton!;
}