copyWith method
Implementation
WebApiModulesAccountServicesAccountResetPasswordExternalRequest copyWith({
String? newPassword,
String? token,
}) {
return WebApiModulesAccountServicesAccountResetPasswordExternalRequest(
newPassword: newPassword ?? this.newPassword,
token: token ?? this.token,
);
}