copyWith method

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

Implementation

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