AtNotification.fromJson constructor

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

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'],
  );
}