SenderModel constructor

SenderModel({
  1. String? id,
  2. required String name,
  3. required SenderStatus status,
  4. required DateTime createdAt,
  5. DateTime? updatedAt,
  6. String? description,
  7. bool? archived = false,
  8. String? userId,
  9. String? companyId,
  10. String? companyTypeId,
  11. String? example,
  12. List<SmsType>? types,
})

Implementation

SenderModel({
  this.id,
  required this.name,
  required this.status,
  required this.createdAt,
  this.updatedAt,
  this.description,
  this.archived = false,
  this.userId,
  this.companyId,
  this.companyTypeId,
  this.example,
  this.types,
});