Contact constructor
const
Contact({
- int? id,
- String? uid,
- String? companyUid,
- String? profilePicture,
- String? firstName,
- String? lastName,
- dynamic email,
- String? phoneNumber,
- dynamic instagramUsername,
- dynamic instagramId,
- String? facebookUsername,
- String? facebookId,
- dynamic twitterUsername,
- dynamic twitterId,
- String? isBlocked,
- DateTime? createdAt,
- DateTime? updatedAt,
Implementation
const Contact({
this.id,
this.uid,
this.companyUid,
this.profilePicture,
this.firstName,
this.lastName,
this.email,
this.phoneNumber,
this.instagramUsername,
this.instagramId,
this.facebookUsername,
this.facebookId,
this.twitterUsername,
this.twitterId,
this.isBlocked,
this.createdAt,
this.updatedAt,
});