RevokedInfo.fromJson constructor

RevokedInfo.fromJson(
  1. Map<String, dynamic> json
)

Implementation

RevokedInfo.fromJson(Map<String, dynamic> json) {
  revokerID = json['revokerID'];
  revokerRole = json['revokerRole'];
  revokerNickname = json['revokerNickname'];
  clientMsgID = json['clientMsgID'];
  revokeTime = json['revokeTime'];
  sourceMessageSendTime = json['sourceMessageSendTime'];
  sourceMessageSendID = json['sourceMessageSendID'];
  sourceMessageSenderNickname = json['sourceMessageSenderNickname'];
  sessionType = json['sessionType'];
}