createController method
Implementation
@override
ChatController createController({String? tag}) {
debugPrint("ChatView createController");
final arguments =
chatViewArguments ?? NavUtils.arguments as ChatViewArguments;
return Get.put(ChatController(arguments), tag: tag);
}