chat_msg_handler.dart 332 B

12345678910111213
  1. import 'package:fis_jsonrpc/rpc.dart';
  2. class ChatMsgNotificationHandler
  3. extends NotificationHandler<ChatMsgNotification> {
  4. ChatMsgNotificationHandler()
  5. : super(NotificationTypeEnum.ChatMsgNotification);
  6. @override
  7. void execute(ChatMsgNotification message) {
  8. super.execute(message);
  9. // Do something...
  10. }
  11. }