Customer constructor

Customer({
  1. CustomerOnboardingState? customerOnboardingState,
  2. String? displayName,
  3. bool? isOnboarded,
  4. String? name,
})

Implementation

Customer({
  this.customerOnboardingState,
  this.displayName,
  this.isOnboarded,
  this.name,
});