getGroupsController method

CometChatGroupsController? getGroupsController()

Implementation

CometChatGroupsController? getGroupsController() {
  try {
    _groupsController ??= Get.find<CometChatGroupsController>(tag: dateTime);
  } catch (_) {}
  return _groupsController;
}