NewNotify.fromJson constructor

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

Implementation

factory NewNotify.fromJson(Map<String, dynamic> json) {
  return NewNotify(NotificationBase.fromJson(json['model']));
}