YIMNotificationMessage.fromJson constructor

YIMNotificationMessage.fromJson(
  1. Map<String, dynamic> VShdHdTcdWujsTdH
)

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());
}