Notifications.fromJson constructor

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

Implementation

factory Notifications.fromJson(Map<String, dynamic> json) {
  return Notifications(
    completed: json['Completed'] as String?,
    error: json['Error'] as String?,
    progressing: json['Progressing'] as String?,
    warning: json['Warning'] as String?,
  );
}