class NotificationCountModel { final bool status; final int count; NotificationCountModel({required this.status, required this.count}); factory NotificationCountModel.fromJson(Map json) { return NotificationCountModel( status: json['status'] ?? false, count: json['count'] ?? 0, ); } Map toJson() { return {'status': status, 'count': count}; } }