fromJson static method

MessageCenterUpdatedEvent fromJson(
  1. dynamic json
)

Implementation

static MessageCenterUpdatedEvent fromJson(dynamic json) {
  final num unread = json["unreadCount"] ?? 0;
  final num count = json["messageCount"] ?? 0;
  return MessageCenterUpdatedEvent._internal(unread.toInt(), count.toInt());
}