UnReadNotificationCount constructor

UnReadNotificationCount({
  1. num? success,
  2. String? unReadTotal,
})

Implementation

UnReadNotificationCount({
    num? success,
    String? unReadTotal,}){
  _success = success;
  _unReadTotal = unReadTotal;
}