AttachedInfoElem.fromJson constructor

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

Implementation

AttachedInfoElem.fromJson(Map<String, dynamic> json) {
  groupHasReadInfo = json['groupHasReadInfo'] == null
      ? null
      : GroupHasReadInfo.fromJson(json['groupHasReadInfo']);
  isPrivateChat = json['isPrivateChat'];
  hasReadTime = json['hasReadTime'];
  burnDuration = json['burnDuration'];
  notSenderNotificationPush = json['notSenderNotificationPush'];
}