JMChatRoomInfo.fromJson constructor

JMChatRoomInfo.fromJson(
  1. Map json
)

Implementation

JMChatRoomInfo.fromJson(Map<dynamic, dynamic> json)
    : roomId = json['roomId'],
      name = json['name'],
      appKey = json['appKey'],
      description = json['description'],
      createTime = json['createTime'],
      maxMemberCount = json['maxMemberCount'],
      memberCount = json['memberCount'];