UserProfile constructor

const UserProfile({
  1. String? userId,
  2. String? name,
  3. String? userType,
  4. String? email,
})

Implementation

const UserProfile({
  this.userId,
  this.name,
  this.userType,
  this.email,
  this.logo,
});