BugModelCustom constructor
Current status of the bug (e.g., Fixed, Unfixed).
Implementation
final String status; /// Current status of the bug (e.g., Fixed, Unfixed).
// Used for storing and retrieving bug data from Firestore database.
BugModelCustom(
this.userId, {
required this.title,
required this.description,
required this.assignedDeveloper,
required this.date,
required this.severity,
required this.status,
});