Subscriber constructor

Subscriber({
  1. String? id,
  2. String? firstName,
  3. String? lastName,
  4. String? email,
  5. String? phone,
  6. String? avatar,
  7. String? locale,
  8. required String subscriberId,
  9. bool? isOnline,
  10. DateTime? lastOnlineAt,
  11. required String organizationId,
  12. required String environmentId,
  13. required bool deleted,
  14. required DateTime createdAt,
  15. required DateTime updatedAt,
  16. required String v,
})

Implementation

Subscriber({
  this.id,
  this.firstName,
  this.lastName,
  this.email,
  this.phone,
  this.avatar,
  this.locale,
  required this.subscriberId,
  this.isOnline,
  this.lastOnlineAt,
  required this.organizationId,
  required this.environmentId,
  required this.deleted,
  required this.createdAt,
  required this.updatedAt,
  required this.v,
});