TimPushMessage.fromJson constructor

TimPushMessage.fromJson(
  1. Map json
)

Implementation

TimPushMessage.fromJson(Map json) {
  json = TencentCloudChatPushUtils.formatJson(json);
  title = json['title'];
  desc = json['desc'];
  ext = json['ext'];
  messageID = json["messageID"] ?? "";
}