NEVoiceRoomInfo.fromJson constructor

NEVoiceRoomInfo.fromJson(
  1. Map? json
)

Implementation

NEVoiceRoomInfo.fromJson(Map? json) {
  anchor = NEVoiceRoomAnchor.fromJson(json?['anchor'] as Map?);
  liveModel = NEVoiceRoomLiveModel.fromJson(json?['live'] as Map?);
}