NotificationCount.fromJson constructor

NotificationCount.fromJson(
  1. dynamic json
)

Implementation

NotificationCount.fromJson(dynamic json) {
  _total = json['total'];
  _message = json['message'];
}