SenderModel constructor

SenderModel({
  1. String? id,
  2. required String name,
  3. required SenderStatus status,
  4. required DateTime createdAt,
  5. String? description,
  6. bool? archived = false,
  7. String? userId,
})

Implementation

SenderModel({
  this.id,
  required this.name,
  required this.status,
  required this.createdAt,
  this.description,
  this.archived = false,
  this.userId,
});