class NotificationCountResponse{ bool? status; String? message; int? count; NotificationCountResponse.fromJson(Map json){ status = (json["Code"] ?? "") != "0"; count = json["Data"] ?? 0; message = json["Message"] ?? "Something went wrong"; } NotificationCountResponse.withError(String err){ status = false; message = err; count = 0; } }