Subscriber constructor
Subscriber({
- String? id,
- String? firstName,
- String? lastName,
- String? email,
- String? phone,
- String? avatar,
- String? locale,
- required String subscriberId,
- bool? isOnline,
- DateTime? lastOnlineAt,
- required String organizationId,
- required String environmentId,
- required bool deleted,
- required DateTime createdAt,
- required DateTime updatedAt,
- 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,
});