NotificationCount constructor

NotificationCount({
  1. num? total,
  2. String? message,
})

Implementation

NotificationCount({
    num? total,
    String? message,}){
  _total = total;
  _message = message;
}