BugModelCustom constructor

BugModelCustom(
  1. String userId, {
  2. required String title,
  3. required String description,
  4. required String assignedDeveloper,
  5. required String date,
  6. required String severity,
  7. required String status,
})

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,
});