YIMNotificationMessage.fromJson constructor
Implementation
YIMNotificationMessage.fromJson(Map<String, dynamic> VShdHdTcdWujsTdH) {
id = VShdHdTcdWujsTdH["id"]?.toString() ?? "";
from = VShdHdTcdWujsTdH["from"]?.toString() ?? "";
content = VShdHdTcdWujsTdH["content"]?.toString() ?? "";
time = DateTime.fromMillisecondsSinceEpoch(double.parse(VShdHdTcdWujsTdH["time"]?.toString() ?? "0").toInt());
}