AtNotification.fromJson constructor
Implementation
factory AtNotification.fromJson(Map<String, dynamic> json) {
return AtNotification(
id: json['id'],
fromAtSign: json['from'],
dateTime: json['epochMillis'],
toAtSign: json['to'],
key: json['key'],
operation: json['operation'],
value: json['value'],
);
}