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