qQChatTypingEventFromJson function

QChatTypingEvent? qQChatTypingEventFromJson(
  1. Map? map
)

Implementation

QChatTypingEvent? qQChatTypingEventFromJson(Map? map) {
  if (map != null) {
    return QChatTypingEvent.fromJson(map.cast<String, dynamic>());
  }
  return null;
}