copyWith method
Implementation
CreateUserRequest copyWith(
{String? givenName,
String? familyName,
String? email,
String? password}) {
return CreateUserRequest(
givenName: givenName ?? this.givenName,
familyName: familyName ?? this.familyName,
email: email ?? this.email,
password: password ?? this.password);
}