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. String? timezone,
  9. Map<String, dynamic>? data,
  10. required String subscriberId,
  11. bool? isOnline,
  12. DateTime? lastOnlineAt,
  13. String? organizationId,
  14. String? environmentId,
  15. bool? deleted,
  16. DateTime? createdAt,
  17. DateTime? updatedAt,
  18. String? v,
})

Implementation

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