copyWith method
Implementation
NotificationCount copyWith({ num? total,
String? message,
}) => NotificationCount( total: total ?? _total,
message: message ?? _message,
);
NotificationCount copyWith({ num? total,
String? message,
}) => NotificationCount( total: total ?? _total,
message: message ?? _message,
);