User constructor
- String? firstName,
 - String? lastName,
 - Uint8List? image,
 - String? imageUrl,
 - ProfileData? profileData,
 
Implementation
User({
  this.firstName,
  this.lastName,
  this.image,
  this.imageUrl,
  this.profileData,
});
User({
  this.firstName,
  this.lastName,
  this.image,
  this.imageUrl,
  this.profileData,
});