Contact constructor
Contact({
- int? id,
- String? name,
- dynamic email,
- dynamic phoneNumber,
- int? accountId,
- DateTime? createdAt,
- DateTime? updatedAt,
- Attributes? additionalAttributes,
- String? identifier,
- Attributes? customAttributes,
- dynamic lastActivityAt,
- List? labelList,
Implementation
Contact({
this.id,
this.name,
this.email,
this.phoneNumber,
this.accountId,
this.createdAt,
this.updatedAt,
this.additionalAttributes,
this.identifier,
this.customAttributes,
this.lastActivityAt,
this.labelList,
});