AssistantNotification.fromJson constructor

AssistantNotification.fromJson(
  1. dynamic map
)

Implementation

factory AssistantNotification.fromJson(map) {
  return AssistantNotification(
      date: map['date'], type: map['type'], data: map['data']);
}