copyWith method
Implementation
CustomerCreateDTO copyWith(
{String? displayName, String? email, String? fullName}) {
return CustomerCreateDTO(
displayName: displayName ?? this.displayName,
email: email ?? this.email,
fullName: fullName ?? this.fullName,
);
}