copyWith method
Implementation
WebApiModulesIntegrationsStorefrontContactRegistrationRequest copyWith({
String? language,
String? firstName,
String? lastName,
String? phone,
String? email,
String? studentId,
}) {
return WebApiModulesIntegrationsStorefrontContactRegistrationRequest(
language: language ?? this.language,
firstName: firstName ?? this.firstName,
lastName: lastName ?? this.lastName,
phone: phone ?? this.phone,
email: email ?? this.email,
studentId: studentId ?? this.studentId,
);
}