User constructor
User({})
Returns a new User instance.
Implementation
User({
required this.id,
required this.email,
this.firstName,
this.lastName,
required this.customerName,
required this.dateJoined,
required this.isActive,
required this.isStaff,
required this.isSuperuser,
required this.isContractor,
});