CommerceUser constructor

CommerceUser({
  1. String membershipType = 'guest',
  2. String? userId,
  3. String? name,
  4. String? phone,
  5. String? email,
})

Implementation

CommerceUser({
  this.membershipType = 'guest',
  this.userId,
  this.name,
  this.phone,
  this.email,
});