Customer constructor
Customer({
- CustomerOnboardingState? customerOnboardingState,
- String? displayName,
- bool? isOnboarded,
- String? name,
Implementation
Customer({
this.customerOnboardingState,
this.displayName,
this.isOnboarded,
this.name,
});