copyWith method
Implementation
WebApiModulesAccountServicesAccountResetPasswordExternalResponse copyWith({
String? status,
String? message,
}) {
return WebApiModulesAccountServicesAccountResetPasswordExternalResponse(
status: status ?? this.status,
message: message ?? this.message,
);
}